mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Resolve syntax issues caused by xjoao.
This commit is contained in:
parent
ff912dccc2
commit
00f36170f1
@ -74,7 +74,7 @@ public abstract class Game implements Runnable {
|
||||
habbo.getClient().sendResponse(new GuideSessionPartnerIsPlayingComposer(true));
|
||||
return true;
|
||||
}
|
||||
} catch (NoSuchMethodException | SecurityException e) {
|
||||
} catch (Exception e) {
|
||||
LOGGER.error("Caught exception", e);
|
||||
}
|
||||
|
||||
|
@ -73,7 +73,8 @@ public class ForumThread implements Runnable, ISerialize {
|
||||
|
||||
try {
|
||||
this.lastComment = ForumThreadComment.getById(set.getInt("last_comment_id"));
|
||||
} catch (SQLException e)) {
|
||||
} catch (SQLException e) {
|
||||
LOGGER.error("ForumThread last_comment_id exception", e);
|
||||
}
|
||||
|
||||
this.comments = new THashMap<>();
|
||||
|
Loading…
Reference in New Issue
Block a user