From 947bf9c45261013d81cc7199cb71c89b88b18fdf Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 8 Jul 2014 23:16:10 +0200 Subject: Findbugs: Use static fields where possible --- src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java | 2 +- src/jogl/classes/com/jogamp/opengl/util/packrect/RectanglePacker.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/jogl/classes/com/jogamp') diff --git a/src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java b/src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java index 763b13954..fc0861eaa 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java +++ b/src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java @@ -1581,7 +1581,7 @@ public class TextRenderer { } class GlyphProducer { - final int undefined = -2; + static final int undefined = -2; final FontRenderContext fontRenderContext = null; // FIXME: Never initialized! List glyphsOutput = new ArrayList(); HashMap fullGlyphVectorCache = new HashMap(); diff --git a/src/jogl/classes/com/jogamp/opengl/util/packrect/RectanglePacker.java b/src/jogl/classes/com/jogamp/opengl/util/packrect/RectanglePacker.java index 65f59ba53..794ae4493 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/packrect/RectanglePacker.java +++ b/src/jogl/classes/com/jogamp/opengl/util/packrect/RectanglePacker.java @@ -51,8 +51,8 @@ public class RectanglePacker { private final BackingStoreManager manager; private Object backingStore; private LevelSet levels; - private final float EXPANSION_FACTOR = 0.5f; - private final float SHRINK_FACTOR = 0.3f; + private static final float EXPANSION_FACTOR = 0.5f; + private static final float SHRINK_FACTOR = 0.3f; private final int initialWidth; private final int initialHeight; -- cgit v1.2.3