Skip to content

Commit 9448adb

Browse files
committed
mark nullable
Signed-off-by: neo <1100909+neowu@users.noreply.github.com>
1 parent 4548a43 commit 9448adb

File tree

1 file changed

+1
-0
lines changed
  • core-ng/src/main/java/core/framework/internal/log/filter

1 file changed

+1
-0
lines changed

core-ng/src/main/java/core/framework/internal/log/filter/LogFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public class LogFilter {
1313
private static final int MAX_PARAM_LENGTH = 10000; // limit long param string to 10k
1414
public final Set<String> maskedFields = Sets.newHashSet();
1515

16+
@SuppressWarnings("NoWhitespaceBefore") // false positive for "Object @Nullable ..."
1617
public void append(StringBuilder builder, @Nullable String message, Object @Nullable ... arguments) {
1718
if (message == null || arguments == null) {
1819
builder.append(message);

0 commit comments

Comments
 (0)