javeme commented on code in PR #1852:
URL:
https://github.com/apache/incubator-hugegraph/pull/1852#discussion_r859816036
##########
hugegraph-core/src/main/java/com/baidu/hugegraph/backend/store/BackendStore.java:
##########
@@ -101,11 +101,9 @@ default Id nextId(HugeType type) {
}
}
- E.checkState(counter != 0L, "Please check whether '%s' is OK",
- this.provider().type());
+ E.checkState(counter != 0L, "Please check whether '%s' is OK",
this.provider().type());
- E.checkState(counter == expect, "'%s' is busy please try again",
- this.provider().type());
+ E.checkState(counter == expect, "'%s' is busy please try again",
this.provider().type());
Review Comment:
Can we limit line length to 80 chars as much as possible? We want to define
100 as the maximum line length, rather than guide length.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]