Files
kotlin-fork/j2k/testData/fileOrElement/comments/removeNoInspectionComment.java
T
Simon Ogorodnik 155cfcb1f8 Fix for KT-6424
Remove "SuppressWarnings" and "//noinspection" on java to kotlin conversion
2016-10-13 18:51:48 +03:00

6 lines
158 B
Java
Vendored

public class Check {
public void a() {
//noinspection RedundantStringConstructorCall
Integer d = (Integer) (Object)(new String());
}
}