Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@@ -220,7 +220,7 @@ public final class AuctionableHall extends ClanHall
{
ps.setInt(1, getOwnerId());
ps.setLong(2, getPaidUntil());
ps.setInt(3, (getPaid()) ? 1 : 0);
ps.setInt(3, getPaid() ? 1 : 0);
ps.setInt(4, getId());
ps.execute();
}

View File

@@ -100,7 +100,7 @@ public abstract class ClanHallSiegeEngine extends Quest implements Siegable
while (rset.next())
{
final int id = rset.getInt("attacker_id");
_attackers.put(id, (new L2SiegeClan(id, SiegeClanType.ATTACKER)));
_attackers.put(id, new L2SiegeClan(id, SiegeClanType.ATTACKER));
}
}
}