We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4548a43 commit 9448adbCopy full SHA for 9448adb
core-ng/src/main/java/core/framework/internal/log/filter/LogFilter.java
@@ -13,6 +13,7 @@ public class LogFilter {
13
private static final int MAX_PARAM_LENGTH = 10000; // limit long param string to 10k
14
public final Set<String> maskedFields = Sets.newHashSet();
15
16
+ @SuppressWarnings("NoWhitespaceBefore") // false positive for "Object @Nullable ..."
17
public void append(StringBuilder builder, @Nullable String message, Object @Nullable ... arguments) {
18
if (message == null || arguments == null) {
19
builder.append(message);
0 commit comments