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/packrect/RectanglePacker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/jogl/classes/com/jogamp/opengl/util/packrect') 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