Skip to content

Commit

Permalink
change module names to meaningful ones
Browse files Browse the repository at this point in the history
  • Loading branch information
funa-tk committed Oct 9, 2019
1 parent 053c22f commit 0b7b30d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/java/core/packetproxy/encode/EncodeCBOR.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private byte[] jsonToCbor(byte[] src){

@Override
public String getName() {
return "CBOR";
return "CBOR over HTTP";
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/core/packetproxy/encode/EncodeMsgPack.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private byte[] jsonToCbor(byte[] src){

@Override
public String getName() {
return "MessagePack";
return "MessagePack over HTTP";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
import packetproxy.common.Protobuf3;
import packetproxy.http.Http;

public class EncodeSampleProtobuf3 extends EncodeHTTPBase
public class EncodeProtobuf extends EncodeHTTPBase
{
@Override
public String getName() {
return "Sample Protocol Buffer v3";
return "Protocol Buffer over HTTP";
}

private Http decodeProtobuf3(Http inputHttp) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class EncodeSampleHTTP extends EncodeHTTPBase
{
@Override
public String getName() {
return "Sample HTTP";
return "Sample over HTTP";
}

@Override
Expand Down

0 comments on commit 0b7b30d

Please sign in to comment.