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 3e4fbf8 commit 6457bdaCopy full SHA for 6457bda
src/test/java/com/github/underscore/lodash/MathTest.java
@@ -254,6 +254,7 @@ public double doubleValue() {
254
_.subtract();
255
=> null
256
*/
257
+ @SuppressWarnings("unchecked")
258
@Test
259
public void subtract() {
260
assertEquals("-1", U.subtract((byte) 1, (byte) 2).toString());
src/test/java/com/github/underscore/lodash/StringTest.java
@@ -3603,7 +3603,7 @@ public void main() throws Exception {
3603
U.main(new String[] {});
3604
new U<String>(new ArrayList<String>());
3605
new U<String>("");
3606
- new U<Object>(Arrays.asList()).chain();
+ new U<Object>(Arrays.<Object>asList()).chain();
3607
new Json.JsonArray();
3608
new Json.JsonValue();
3609
new Json.JsonObject();
0 commit comments