We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4eacca commit 4c95b4fCopy full SHA for 4c95b4f
module/jsonurl-core/src/main/java/org/jsonurl/BigMathProvider.java
@@ -115,14 +115,4 @@ enum BigIntegerOverflow {
115
* @return a valid BigIntegerOverflow or null
116
*/
117
BigIntegerOverflow getBigIntegerOverflow();
118
-
119
- /**
120
- * Cast the given object to a valid BigMathProvider or {@code null}.
121
- * @param obj any object or {@code null}
122
- * @return a valid BigMathProvider or {@code null}
123
- */
124
- static BigMathProvider forObject(Object obj) {
125
- return obj instanceof BigMathProvider
126
- ? (BigMathProvider)obj : null;
127
- }
128
}
0 commit comments