Move member to top of class.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 19 Feb 2013 19:16:14 +0000 (20:16 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 19 Feb 2013 19:16:14 +0000 (20:16 +0100)
src/main/java/net/pterodactylus/rhynodge/triggers/NewEpisodeTrigger.java

index 421f6e1..55266af 100644 (file)
@@ -48,14 +48,15 @@ import com.google.common.collect.Sets;
  */
 public class NewEpisodeTrigger implements Trigger {
 
+       /** All episodes. */
+       private final Collection<Episode> allEpisodes = Sets.newHashSet();
+
        /** All new episodes. */
        private final Collection<Episode> newEpisodes = Sets.newHashSet();
 
        /** All changed episodes. */
        private final Collection<Episode> changedEpisodes = Sets.newHashSet();
 
-       /** All episodes. */
-       private final Collection<Episode> allEpisodes = Sets.newHashSet();
 
        //
        // TRIGGER METHODS