You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why does the method below take a Supplier<String>? It seems like String would be sufficient
public Printer<T> withNullValue(Supplier<String> nullValue) {
Also, Formats.registerPrinters calls .withNullValue(nullValue) on every single printer, which doesn't seem like it should be necessary since DEFAULT_NULL has the same value
The text was updated successfully, but these errors were encountered:
Why does the method below take a
Supplier<String>
? It seems likeString
would be sufficientAlso,
Formats.registerPrinters
calls.withNullValue(nullValue)
on every single printer, which doesn't seem like it should be necessary sinceDEFAULT_NULL
has the same valueThe text was updated successfully, but these errors were encountered: