Code style changes.
This commit is contained in:
@@ -55,7 +55,7 @@ public final class AuctionDateGenerator
|
||||
checkMinuteOfHour(0);
|
||||
}
|
||||
|
||||
public synchronized final long nextDate(long date)
|
||||
public final synchronized long nextDate(long date)
|
||||
{
|
||||
_calendar.setTimeInMillis(date);
|
||||
_calendar.set(Calendar.MILLISECOND, 0);
|
||||
|
@@ -595,7 +595,7 @@ public final class ItemAuctionInstance
|
||||
{
|
||||
while (rs.next())
|
||||
{
|
||||
auctionBids.add((new ItemAuctionBid(rs.getInt(1), rs.getLong(2))));
|
||||
auctionBids.add(new ItemAuctionBid(rs.getInt(1), rs.getLong(2)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -37,7 +37,7 @@ public enum ItemAuctionState
|
||||
return _stateId;
|
||||
}
|
||||
|
||||
public static final ItemAuctionState stateForStateId(byte stateId)
|
||||
public static ItemAuctionState stateForStateId(byte stateId)
|
||||
{
|
||||
for (ItemAuctionState state : ItemAuctionState.values())
|
||||
{
|
||||
|
Reference in New Issue
Block a user