Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/cache/HostLimitQueue.java

    r8418 r8510  
    9595        Semaphore limit = hostSemaphores.get(host);
    9696        if (limit == null) {
    97             synchronized(hostSemaphores) {
     97            synchronized (hostSemaphores) {
    9898                limit = hostSemaphores.get(host);
    9999                if (limit == null) {
     
    122122    }
    123123
    124 
    125     private boolean tryAcquireSemaphore(final JCSCachedTileLoaderJob<?,?> job) {
     124    private boolean tryAcquireSemaphore(final JCSCachedTileLoaderJob<?, ?> job) {
    126125        boolean ret = true;
    127126        Semaphore limit = getSemaphore(job);
     
    140139    }
    141140
    142     private void releaseSemaphore(JCSCachedTileLoaderJob<?,?> job) {
     141    private void releaseSemaphore(JCSCachedTileLoaderJob<?, ?> job) {
    143142        Semaphore limit = getSemaphore(job);
    144143        if (limit != null) {
Note: See TracChangeset for help on using the changeset viewer.