[Japi-cvs] SF.net SVN: japi:[1324] progs/jeduca/trunk/src/prj/net/sf/japi
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-05-23 14:38:16
|
Revision: 1324 http://japi.svn.sourceforge.net/japi/?rev=1324&view=rev Author: christianhujer Date: 2009-05-23 14:38:13 +0000 (Sat, 23 May 2009) Log Message: ----------- Fix PMD issues. Modified Paths: -------------- progs/jeduca/trunk/src/prj/net/sf/japi/progs/jeduca/swing/OpenURLPane.java progs/jeduca/trunk/src/prj/net/sf/japi/swing/LookAndFeelManager.java Modified: progs/jeduca/trunk/src/prj/net/sf/japi/progs/jeduca/swing/OpenURLPane.java =================================================================== --- progs/jeduca/trunk/src/prj/net/sf/japi/progs/jeduca/swing/OpenURLPane.java 2009-05-23 14:38:10 UTC (rev 1323) +++ progs/jeduca/trunk/src/prj/net/sf/japi/progs/jeduca/swing/OpenURLPane.java 2009-05-23 14:38:13 UTC (rev 1324) @@ -232,7 +232,7 @@ /** File Selection Action. */ public void selectFile() { final int res = fileChooser.showOpenDialog(this); - if (res == JFileChooser.CANCEL_OPTION) { + if (res == JFileChooser.CANCEL_OPTION) { // NOPMD // Nothing to do in case of cancel. } else if (res == JFileChooser.APPROVE_OPTION) { try { Modified: progs/jeduca/trunk/src/prj/net/sf/japi/swing/LookAndFeelManager.java =================================================================== --- progs/jeduca/trunk/src/prj/net/sf/japi/swing/LookAndFeelManager.java 2009-05-23 14:38:10 UTC (rev 1323) +++ progs/jeduca/trunk/src/prj/net/sf/japi/swing/LookAndFeelManager.java 2009-05-23 14:38:13 UTC (rev 1324) @@ -164,7 +164,7 @@ } /** {@inheritDoc} */ - @Override protected Object clone() throws CloneNotSupportedException { + @Override protected Object clone() throws CloneNotSupportedException { // NOPMD return super.clone(); } @@ -205,7 +205,7 @@ } /** {@inheritDoc} */ - @Override protected Object clone() throws CloneNotSupportedException { + @Override protected Object clone() throws CloneNotSupportedException { // NOPMD return super.clone(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |