We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6205225 commit 7db1dafCopy full SHA for 7db1daf
core/src/main/java/org/mapfish/print/map/style/json/MapfishStyleParserPlugin.java
@@ -452,12 +452,11 @@ public Optional<Style> parseStyle(
452
return ParserPluginUtils.loadStyleAsURI(
453
clientHttpRequestFactory,
454
styleString,
455
- (final byte[] input) -> {
456
- return tryParse(
457
- configuration,
458
- new String(input, Constants.DEFAULT_CHARSET),
459
- clientHttpRequestFactory);
460
- });
+ (final byte[] input) ->
+ tryParse(
+ configuration,
+ new String(input, Constants.DEFAULT_CHARSET),
+ clientHttpRequestFactory));
461
}
462
463
private Optional<Style> tryParse(
0 commit comments