/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/secretdoor/DoorStorage.java
ViewVC logotype

Diff of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/secretdoor/DoorStorage.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1530 by torben, Mon Jun 27 16:14:34 2011 UTC revision 1538 by torben, Wed Jun 29 18:16:51 2011 UTC
# Line 14  public class DoorStorage { Line 14  public class DoorStorage {
14          private HashMap<Location,Door> doormap = new HashMap<Location,Door>();          private HashMap<Location,Door> doormap = new HashMap<Location,Door>();
15          private LinkedList<Door> doors = new LinkedList<Door>();          private LinkedList<Door> doors = new LinkedList<Door>();
16                    
17          Plugin plugin;          private Plugin plugin;
18                    
19          public DoorStorage(Plugin plugin) {          public DoorStorage(Plugin plugin) {
20                  this.plugin = plugin;                  this.plugin = plugin;
# Line 68  public class DoorStorage { Line 68  public class DoorStorage {
68                          }                          }
69                          in.close();                          in.close();
70                                                    
71                            System.out.println("[SecretDoor] loaded " + doors.size() + " doors");
72                            
73                  }                  }
74                  catch (FileNotFoundException fnfe) {                  catch (FileNotFoundException fnfe) {
75                            System.out.println("[SecretDoor] door file not found");
76                          return;                          return;
77                  }                  }
78                  catch (IOException e) {                  catch (IOException e) {

Legend:
Removed from v.1530  
changed lines
  Added in v.1538

  ViewVC Help
Powered by ViewVC 1.1.20