Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (11 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/io/Capabilities.java

    r8443 r8510  
    5151public class Capabilities {
    5252
    53     private final Map<String, Map<String,String>> capabilities;
     53    private final Map<String, Map<String, String>> capabilities;
    5454    private final List<String> imageryBlacklist;
    5555
     
    132132        } else {
    133133            if (!capabilities.containsKey(element))  {
    134                 Map<String,String> h = new HashMap<>();
     134                Map<String, String> h = new HashMap<>();
    135135                capabilities.put(element, h);
    136136            }
     
    248248        @Override
    249249        public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
    250             for (int i=0; i< atts.getLength(); i++) {
     250            for (int i = 0; i < atts.getLength(); i++) {
    251251                capabilities.put(qName, atts.getQName(i), atts.getValue(i));
    252252            }
Note: See TracChangeset for help on using the changeset viewer.