File tree Expand file tree Collapse file tree 4 files changed +4
-9
lines changed
main/java/io/getunleash/util
test/java/io/getunleash/util Expand file tree Collapse file tree 4 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 334
334
<plugin >
335
335
<groupId >com.diffplug.spotless</groupId >
336
336
<artifactId >spotless-maven-plugin</artifactId >
337
- <version >2.40 .0</version >
337
+ <version >2.28 .0</version >
338
338
<configuration >
339
339
<formats >
340
340
<format >
Original file line number Diff line number Diff line change @@ -17,8 +17,7 @@ public static List<Constraint> mergeConstraints(
17
17
Optional .ofNullable (strategy .getConstraints ())
18
18
.orElseGet (Collections ::emptyList ),
19
19
Optional .ofNullable (strategy .getSegments ())
20
- .orElseGet (Collections ::emptyList )
21
- .stream ()
20
+ .orElseGet (Collections ::emptyList ).stream ()
22
21
.map (repository ::getSegment )
23
22
.map (s -> s == null ? DENY_SEGMENT : s )
24
23
.map (Segment ::getConstraints )
Original file line number Diff line number Diff line change @@ -528,9 +528,7 @@ public Builder sendMetricsInterval(long sendMetricsInterval) {
528
528
return this ;
529
529
}
530
530
531
- /***
532
- * Don't poll for feature toggle updates
533
- */
531
+ /** * Don't poll for feature toggle updates */
534
532
public Builder disablePolling () {
535
533
this .disablePolling = true ;
536
534
return this ;
Original file line number Diff line number Diff line change 19
19
20
20
import org .junit .jupiter .api .Test ;
21
21
22
- /**
23
- * @author Luke Taylor
24
- */
22
+ /** @author Luke Taylor */
25
23
class IpAddressMatcherTest {
26
24
private final IpAddressMatcher v6matcher = new IpAddressMatcher ("fe80::21f:5bff:fe33:bd68" );
27
25
private final IpAddressMatcher v4matcher = new IpAddressMatcher ("192.168.1.104" );
You can’t perform that action at this time.
0 commit comments