no message

This commit is contained in:
2024-10-07 22:04:09 +03:00
parent 7fac84740d
commit 17c0bf7eb3
103 changed files with 560 additions and 491 deletions

View File

@@ -1,6 +1,5 @@
package Repository.Server;
import Common.Utils.CommonUtils;
import Common_old.Utils.Utils;
import java.io.File;
import java.io.Serializable;
@@ -30,10 +29,10 @@ public class ServerExchangeUnit_2021 implements Serializable {
}
//--------
public void Unpack() throws Exception {
Utils.unpackFile((byte[]) object, new File(arg));
CommonUtils.bytesToFile((byte[]) object, new File(arg));
}
public void Unpack(File file) throws Exception {
Utils.unpackFile((byte[]) object, file);
CommonUtils.bytesToFile((byte[]) object, file);
}
public void Print() {
System.out.println("codeName=" + CommonUtils.Brackets(codeName));