Ignore:
Timestamp:
2015-05-11T10:52:33+02:00 (9 years ago)
Author:
Don-vip
Message:

code style - Useless parentheses around expressions should be removed to prevent any misunderstanding

File:
1 edited

Legend:

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

    r8318 r8345  
    5252        File cacheDir = new File(Main.pref.getCacheDirectory(), "jcs");
    5353
    54         if ((!cacheDir.exists() && !cacheDir.mkdirs()))
     54        if (!cacheDir.exists() && !cacheDir.mkdirs())
    5555            throw new IOException("Cannot access cache directory");
    5656
Note: See TracChangeset for help on using the changeset viewer.