formatting

This commit is contained in:
spencergibb
2021-11-15 12:51:20 -05:00
parent 9af50f5ff4
commit 1f2a6eca17
3 changed files with 3 additions and 1 deletions

View File

@@ -109,4 +109,5 @@ public class CredhubEnvironmentRepository implements EnvironmentRepository, Orde
public void setOrder(int order) {
this.order = order;
}
}

View File

@@ -330,7 +330,7 @@ public class NativeEnvironmentRepository implements EnvironmentRepository, Searc
}
if (locations != null) {
matches = Arrays.stream(locations).map(this::cleanFileLocation)
.anyMatch(location -> location.startsWith(finalPattern));
.anyMatch(location -> location.startsWith(finalPattern));
if (matches) {
break;
}

View File

@@ -72,4 +72,5 @@ public class RedisEnvironmentRepository implements EnvironmentRepository, Ordere
public int getOrder() {
return order;
}
}