remove Id keyword
[jSite2.git] / src / net / pterodactylus / util / image / IconLoader.java
index 9dda78d..2804d08 100644 (file)
@@ -27,7 +27,6 @@ import javax.swing.ImageIcon;
  * Loads an {@link Icon} from the class path.
  * 
  * @author <a href="mailto:droden@gmail.com">David Roden</a>
- * @version $Id$
  */
 public class IconLoader {
 
@@ -53,6 +52,7 @@ public class IconLoader {
                        imageOutput.flush();
                        return new ImageIcon(imageOutput.toByteArray());
                } catch (IOException e) {
+                       /* ignore. */
                }
                return null;
        }