Make classes static.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 1 Apr 2011 10:34:48 +0000 (12:34 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 1 Apr 2011 10:34:48 +0000 (12:34 +0200)
src/main/java/net/pterodactylus/sone/core/SoneInserter.java
src/main/java/net/pterodactylus/sone/web/page/TemplatePage.java

index b16d374..05fa4b4 100644 (file)
@@ -246,7 +246,7 @@ public class SoneInserter extends AbstractService {
         *
         * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
         */
-       private class InsertInformation {
+       private static class InsertInformation {
 
                /** All properties of the Sone, copied for thread safety. */
                private final Map<String, Object> soneProperties = new HashMap<String, Object>();
index 9b40deb..6e0bebc 100644 (file)
@@ -227,7 +227,7 @@ public class TemplatePage implements Page, LinkEnabledCallback {
         *
         * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
         */
-       public class RedirectException extends Exception {
+       public static class RedirectException extends Exception {
 
                /** The target to redirect to. */
                private final String target;