Skip to content

Commit

Permalink
Spotless.
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejwalkowiak committed Jul 19, 2021
1 parent 8d89b0d commit 989a208
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sentry/src/main/java/io/sentry/SentryOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ public class SentryOptions {
options.setEnableDeduplication(propertiesProvider.getBooleanProperty("enable-deduplication"));
final String maxRequestBodySize = propertiesProvider.getProperty("max-request-body-size");
if (maxRequestBodySize != null) {
options.setMaxRequestBodySize(RequestSize.valueOf(maxRequestBodySize.toUpperCase(Locale.ROOT)));
options.setMaxRequestBodySize(
RequestSize.valueOf(maxRequestBodySize.toUpperCase(Locale.ROOT)));
}
final Map<String, String> tags = propertiesProvider.getMap("tags");
for (final Map.Entry<String, String> tag : tags.entrySet()) {
Expand Down

0 comments on commit 989a208

Please sign in to comment.