We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56bc360 commit 963e8edCopy full SHA for 963e8ed
src/main/java/org/organicdesign/fp/FunctionUtils.java
@@ -28,6 +28,11 @@ private FunctionUtils() {
28
throw new UnsupportedOperationException("No instantiation");
29
}
30
31
+ /**
32
+ * Replace with com.planbase.taint.Taintable.stringify.
33
+ * That method is safe. This one is a joke.
34
+ */
35
+ @Deprecated(forRemoval = true)
36
public static @NotNull String stringify(@Nullable Object o) {
37
if (o == null) { return "null"; }
38
if (o instanceof String) { return "\"" + o + "\""; }
0 commit comments