Remove ObjectProcessor#getInputClass

Replace an explicit input class declaration with nasty reflection code.
This commit is contained in:
2020-07-25 17:29:32 +02:00
parent 1cdad2df0b
commit 63f42ab8d9
15 changed files with 13 additions and 52 deletions

View File

@ -191,7 +191,4 @@ public final class LoginCredentialProcessor implements ObjectProcessor<LoginCred
// Complete the handshake
writeProxy.write(socketID, user.toCommon());
}
@Override
public Class<LoginCredentials> getInputClass() { return LoginCredentials.class; }
}