< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_allocate02.java

Print this page
rev 52509 : [mq]: graal2

*** 30,40 **** /* */ public class HP_allocate02 extends JTTTest { ! @SuppressWarnings("deprecation") public static int test(int count) { int sum = 0; for (int i = 0; i < count; i++) { final Integer j = new Integer(i); sum += j; --- 30,40 ---- /* */ public class HP_allocate02 extends JTTTest { ! @SuppressWarnings({"deprecation", "unused"}) public static int test(int count) { int sum = 0; for (int i = 0; i < count; i++) { final Integer j = new Integer(i); sum += j;
< prev index next >