diff options
author | Kenneth Russel <[email protected]> | 2009-06-15 23:05:16 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2009-06-15 23:05:16 +0000 |
commit | 935d2596c13371bb745d921dbcb9f05b0c11a010 (patch) | |
tree | 7fcc310618ae5a90edc734dc821e75afc0f080aa /src/demos/nurbs/icons/IconFactory.java | |
parent | e2332d2f2908e68f1e77454c73f329f8ff2b400d (diff) |
Deleted obsolete source code in preparation for copying JOGL_2_SANDBOX
on to trunk
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@351 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/nurbs/icons/IconFactory.java')
-rwxr-xr-x | src/demos/nurbs/icons/IconFactory.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/demos/nurbs/icons/IconFactory.java b/src/demos/nurbs/icons/IconFactory.java deleted file mode 100755 index 88d8539..0000000 --- a/src/demos/nurbs/icons/IconFactory.java +++ /dev/null @@ -1,19 +0,0 @@ -package demos.nurbs.icons; - -import java.io.*; -import javax.swing.ImageIcon; -import com.sun.opengl.util.StreamUtil; - -public class IconFactory { - private IconFactory() {} - - public static ImageIcon getIcon(String resourceName) { - try { - InputStream input = IconFactory.class.getClassLoader().getResourceAsStream(resourceName); - byte[] data = StreamUtil.readAll(input); - return new ImageIcon(data, resourceName); - } catch (IOException e) { - return new ImageIcon(); - } - } -} |