[Japi-cvs] SF.net SVN: japi:[1320] libs/swing-font/trunk/src/prj/net/sf/japi/swing/ font/FontChoose
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-05-23 14:21:30
|
Revision: 1320 http://japi.svn.sourceforge.net/japi/?rev=1320&view=rev Author: christianhujer Date: 2009-05-23 14:21:22 +0000 (Sat, 23 May 2009) Log Message: ----------- Suppress PMD warnings - the alternative would be code which is more difficult to understand. Modified Paths: -------------- libs/swing-font/trunk/src/prj/net/sf/japi/swing/font/FontChooser.java Modified: libs/swing-font/trunk/src/prj/net/sf/japi/swing/font/FontChooser.java =================================================================== --- libs/swing-font/trunk/src/prj/net/sf/japi/swing/font/FontChooser.java 2009-05-23 14:19:03 UTC (rev 1319) +++ libs/swing-font/trunk/src/prj/net/sf/japi/swing/font/FontChooser.java 2009-05-23 14:21:22 UTC (rev 1320) @@ -166,9 +166,9 @@ /** {@inheritDoc} */ public void valueChanged(@NotNull final ListSelectionEvent e) { final Object source = e.getSource(); - if (source == familyList) { + if (source == familyList) { // NOPMD // No special action except updateFont() - } else if (source == styleList) { + } else if (source == styleList) { // NOPMD // No special action except updateFont() } else if (source == sizeList) { final Object size = sizeList.getSelectedValue(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |