From e86ed71a0b3acedade8d2f8df6331c71437da691 Mon Sep 17 00:00:00 2001 From: civitarese Date: Thu, 23 Apr 2020 19:14:56 +0200 Subject: [PATCH] refactoring --- .idea/misc.xml | 3 + .idea/vcs.xml | 6 + .idea/workspace.xml | 644 +++++-------- src/main/java/researcher/Client.java | 3 +- target/classes/ChatService.proto | 10 +- target/classes/chat/ChatClient$1.class | Bin 1630 -> 1630 bytes target/classes/chat/ChatClient.class | Bin 2989 -> 3090 bytes target/classes/chat/ChatServer.class | Bin 1263 -> 1302 bytes target/classes/chat/ChatServiceImpl$1.class | Bin 2850 -> 3591 bytes target/classes/chat/ChatServiceImpl.class | Bin 1387 -> 1557 bytes .../com/example/chat/ChatServiceGrpc$1.class | Bin 227 -> 227 bytes ...pc$ChatServiceBaseDescriptorSupplier.class | Bin 1260 -> 1260 bytes ...tServiceGrpc$ChatServiceBlockingStub.class | Bin 1393 -> 1393 bytes ...pc$ChatServiceFileDescriptorSupplier.class | Bin 571 -> 571 bytes ...hatServiceGrpc$ChatServiceFutureStub.class | Bin 1383 -> 1383 bytes .../ChatServiceGrpc$ChatServiceImplBase.class | Bin 2210 -> 2210 bytes ...$ChatServiceMethodDescriptorSupplier.class | Bin 1267 -> 1267 bytes .../ChatServiceGrpc$ChatServiceStub.class | Bin 2409 -> 2409 bytes .../chat/ChatServiceGrpc$MethodHandlers.class | Bin 2245 -> 2280 bytes .../com/example/chat/ChatServiceGrpc.class | Bin 4143 -> 4214 bytes .../chat/ChatServiceOuterClass$1.class | Bin 1033 -> 1033 bytes .../ChatServiceOuterClass$ChatMessage$1.class | Bin 1480 -> 1480 bytes ...erviceOuterClass$ChatMessage$Builder.class | Bin 14462 -> 14806 bytes .../ChatServiceOuterClass$ChatMessage.class | Bin 13828 -> 14136 bytes ...rviceOuterClass$ChatMessageOrBuilder.class | Bin 451 -> 451 bytes .../example/chat/ChatServiceOuterClass.class | Bin 3152 -> 3152 bytes .../example/grpc/GreetingServiceGrpc$1.class | Bin 239 -> 239 bytes ...reetingServiceBaseDescriptorSupplier.class | Bin 1296 -> 1296 bytes ...viceGrpc$GreetingServiceBlockingStub.class | Bin 2802 -> 2802 bytes ...reetingServiceFileDescriptorSupplier.class | Bin 611 -> 611 bytes ...erviceGrpc$GreetingServiceFutureStub.class | Bin 2548 -> 2548 bytes ...gServiceGrpc$GreetingServiceImplBase.class | Bin 2783 -> 2783 bytes ...etingServiceMethodDescriptorSupplier.class | Bin 1307 -> 1307 bytes ...etingServiceGrpc$GreetingServiceStub.class | Bin 2875 -> 2875 bytes .../GreetingServiceGrpc$MethodHandlers.class | Bin 2594 -> 2631 bytes .../example/grpc/GreetingServiceGrpc.class | Bin 4716 -> 4787 bytes .../grpc/GreetingServiceOuterClass$1.class | Bin 1049 -> 1049 bytes ...tingServiceOuterClass$HelloRequest$1.class | Bin 1522 -> 1522 bytes ...rviceOuterClass$HelloRequest$Builder.class | Bin 16816 -> 17168 bytes ...eetingServiceOuterClass$HelloRequest.class | Bin 15316 -> 15668 bytes ...viceOuterClass$HelloRequestOrBuilder.class | Bin 666 -> 666 bytes ...ingServiceOuterClass$HelloResponse$1.class | Bin 1528 -> 1528 bytes ...viceOuterClass$HelloResponse$Builder.class | Bin 13826 -> 14123 bytes ...etingServiceOuterClass$HelloResponse.class | Bin 13227 -> 13501 bytes ...iceOuterClass$HelloResponseOrBuilder.class | Bin 428 -> 428 bytes .../grpc/GreetingServiceOuterClass.class | Bin 3844 -> 3844 bytes target/classes/grpchelloserver/App.class | Bin 1164 -> 1203 bytes .../GreetingServiceClient$1.class | Bin 1876 -> 1876 bytes .../GreetingServiceClient.class | Bin 3466 -> 3467 bytes .../grpchelloserver/GreetingServiceImpl.class | Bin 2495 -> 2495 bytes .../com/example/chat/ChatServiceGrpc.java | 15 - .../example/chat/ChatServiceOuterClass.java | 98 -- target/grpchelloserver-1.0-SNAPSHOT.jar | Bin 65805 -> 100027 bytes .../compile/default-compile/createdFiles.lst | 44 +- .../default-testCompile/inputFiles.lst | 2 +- .../google/protobuf/any.proto | 149 --- .../google/protobuf/api.proto | 210 ----- .../google/protobuf/compiler/plugin.proto | 167 ---- .../google/protobuf/descriptor.proto | 849 ------------------ .../google/protobuf/duration.proto | 117 --- .../google/protobuf/empty.proto | 52 -- .../google/protobuf/field_mask.proto | 246 ----- .../google/protobuf/source_context.proto | 48 - .../google/protobuf/struct.proto | 96 -- .../google/protobuf/timestamp.proto | 133 --- .../google/protobuf/type.proto | 187 ---- .../google/protobuf/wrappers.proto | 118 --- .../TEST-grpchelloserver.AppTest.xml | 84 +- .../grpchelloserver.AppTest.txt | 2 +- .../grpchelloserver/AppTest.class | Bin 609 -> 609 bytes 70 files changed, 286 insertions(+), 2997 deletions(-) create mode 100644 .idea/vcs.xml delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/any.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/api.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/compiler/plugin.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/descriptor.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/duration.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/empty.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/field_mask.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/source_context.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/struct.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/timestamp.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/type.proto delete mode 100644 target/protoc-dependencies/39d3344ac694fe18d5f8c1f8e6745836/google/protobuf/wrappers.proto diff --git a/.idea/misc.xml b/.idea/misc.xml index cc31612..3954581 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,9 @@ + +