Declare all possibly-static methods as static.
[jSite.git] / src / de / todesbaum / jsite / main / Main.java
index 7c7d8fd..3c9c3fa 100644 (file)
@@ -406,7 +406,7 @@ public class Main implements ActionListener, ListSelectionListener, WizardListen
         * @return The supported locale that was found, or the default locale if no
         *         supported locale could be found
         */
-       private Locale findSupportedLocale(Locale forLocale) {
+       private static Locale findSupportedLocale(Locale forLocale) {
                for (Locale locale : SUPPORTED_LOCALES) {
                        if (locale.equals(forLocale)) {
                                return locale;