/hg/gfx-test: Fixed two warnings in class GfxTest.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Sep 29 02:06:09 PDT 2010


changeset 16d437ccd5a4 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=16d437ccd5a4
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Sep 29 11:06:37 2010 +0200

	Fixed two warnings in class GfxTest.


diffstat:

2 files changed, 4 insertions(+), 1 deletion(-)
Makefile                               |    2 ++
src/org/gfxtest/framework/GfxTest.java |    3 ++-

diffs (32 lines):

diff -r efdbddf209db -r 16d437ccd5a4 Makefile
--- a/Makefile	Fri Sep 24 11:30:24 2010 -0400
+++ b/Makefile	Wed Sep 29 11:06:37 2010 +0200
@@ -51,6 +51,8 @@ RUN_OPTIONS=-w=640 -h=480 -t=rgb
 RUN_OPTIONS=-w=640 -h=480 -t=rgb
 TESTED_JAVA=/usr/java/default/bin/java
 REFERENCE_JAVA=/usr/java/default/bin/java
+# TESTED_JAVA=/usr/lib/jvm/java-openjdk/bin/java
+# REFERENCE_JAVA=/usr/lib/jvm/java-sun/bin/java
 JAVAC=javac
 
 FRAMEWORK_CLASSES = \
diff -r efdbddf209db -r 16d437ccd5a4 src/org/gfxtest/framework/GfxTest.java
--- a/src/org/gfxtest/framework/GfxTest.java	Fri Sep 24 11:30:24 2010 -0400
+++ b/src/org/gfxtest/framework/GfxTest.java	Wed Sep 29 11:06:37 2010 +0200
@@ -352,6 +352,7 @@ public abstract class GfxTest
         this.currentTestNumber++;
     }
 
+    @SuppressWarnings("boxing")
     private void performOneTest(GfxTestConfiguration configuration, int testNumber, EntityRenderingStyle entityRenderingStyle)
     {
         String testName = String.format("test%03d", testNumber); //$NON-NLS-1$
@@ -513,7 +514,7 @@ public abstract class GfxTest
 
 	public int getArcStep()
 	{
-		return arcStep;
+		return this.arcStep;
 	}
 
 	public void setArcStep(int arcStep)



More information about the distro-pkg-dev mailing list