Upgrade to google-java-format 1.5

Change-Id: Ibad33f7aff0226fa954d44365e2b3ea2e3c6ff8e
This commit is contained in:
David Pursehouse
2018-04-18 09:33:50 +02:00
parent 421930886b
commit c421174abf
18 changed files with 35 additions and 32 deletions

View File

@@ -58,7 +58,7 @@ public class StoredValue<T> {
public T get(Prolog engine) {
T obj = getOrNull(engine);
if (obj == null) {
//unless createValue() is overridden, will return null
// unless createValue() is overridden, will return null
obj = createValue(engine);
if (obj == null) {
throw new SystemException("No " + key + " available");