javeme commented on code in PR #1852:
URL:
https://github.com/apache/incubator-hugegraph/pull/1852#discussion_r860501292
##########
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:
We already have a lot of code in this style, and we also recommend keeping
alignment when indented. So it's a good choice to set
`forceStrictCondition=false`.
--
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]