remove Id keyword
[jSite2.git] / src / net / pterodactylus / jsite / gui / AboutDialog.java
index 153e4cf..26b9705 100644 (file)
@@ -55,13 +55,12 @@ import net.pterodactylus.util.swing.SwingUtils;
  * An “about” dialog.
  * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
- * @version $Id$
  */
 public class AboutDialog extends JDialog implements I18nable {
 
        /** A list of all contributors. */
        private static final List<Contributor> CONTRIBUTORS = new ArrayList<Contributor>();
-       
+
        /** A list of all code usages. */
        private static final List<CodeUsage> CODE_USAGES = new ArrayList<CodeUsage>();
 
@@ -84,7 +83,7 @@ public class AboutDialog extends JDialog implements I18nable {
 
        /** The “other people’s code used” label. */
        private I18nLabel codeUsageLabel;
-       
+
        /** The license header. */
        private I18nLabel licenseHeaderLabel;
 
@@ -190,12 +189,12 @@ public class AboutDialog extends JDialog implements I18nable {
                codeUsageLabel.setFont(codeUsageLabel.getFont().deriveFont(Font.BOLD));
                textPanel.add(codeUsageLabel);
                textPanel.add(Box.createVerticalStrut(12));
-               
+
                for (CodeUsage codeUsage: CODE_USAGES) {
                        JLabel usageLabel = new JLabel(codeUsage.getName() + " (" + codeUsage.getURL() + ", " + codeUsage.getLicense() + ")");
                        textPanel.add(usageLabel);
                }
-               
+
                return aboutPanel;
        }
 
@@ -286,7 +285,6 @@ public class AboutDialog extends JDialog implements I18nable {
         * Container for a contributor.
         * 
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
-        * @version $Id$
         */
        private static class Contributor {