Skip to content

Commit

Permalink
rename nebula code (vesoft-inc#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaphet authored and critical27 committed Jan 9, 2020
1 parent 7d6acef commit 6c9d275
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/main/java/com/vesoft/nebula/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
public interface Client extends AutoCloseable {

public static enum ErrorCode {
public static enum NebulaCode {
SUCCEEDED(0);

int code;
Expand All @@ -22,11 +22,11 @@ int getCode() {
return code;
}

private ErrorCode() {
private NebulaCode() {

}

ErrorCode(int code) {
NebulaCode(int code) {
this.code = code;
}
}
Expand Down

0 comments on commit 6c9d275

Please sign in to comment.