no message

This commit is contained in:
2025-02-04 16:55:55 +03:00
parent d35848478f
commit b0941d6bfd
6 changed files with 15 additions and 32 deletions

View File

@@ -43,6 +43,9 @@ public abstract class ClientPass <S extends RepositoryServer,T> extends Pass<T>
protected boolean SendRequest(ServerCode code_in,String arg_in, Serializable object_in){
return SendRequest(code_in,arg_in, object_in, Global.properties.SocketTimeout);
}
protected boolean SendRequest(ServerCode code_in, String arg_in){
return SendRequest(code_in,arg_in,null);
}
protected boolean SendRequest(ServerCode code_in){
return SendRequest(code_in, "", null);
}