# HG changeset patch # User Nobuyasu Oshiro # Date 1389400425 -32400 # Node ID a6fa10e42601a92faf91587497d8dfc8ae6ad24a # Parent 00fcb468de277cc8aff74fdb2d4bdbdd7cf4b34f Fixed compile error diff -r 00fcb468de27 -r a6fa10e42601 src/main/java/app/bbs/PersistentJungleBulletinBoard.java --- a/src/main/java/app/bbs/PersistentJungleBulletinBoard.java Sat Jan 11 09:30:57 2014 +0900 +++ b/src/main/java/app/bbs/PersistentJungleBulletinBoard.java Sat Jan 11 09:33:45 2014 +0900 @@ -34,11 +34,12 @@ private final PersistentJournal journal; private final String LOG_DIR = "./log"; + public PersistentJungleBulletinBoard(String _uuid) throws FileNotFoundException { journal = new PersistentJournal(); jungle = new NetworkDefaultJungle(journal, _uuid,new DefaultTreeEditor(new DefaultTraverser())); - BullentInBoardJungleManager.setJungle(jungle); + BulletinBoardJungleManager.setJungle(jungle); } public void init() {