Ignore:
Timestamp:
2010-09-15T18:56:19+02:00 (14 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/livegps/src/org/json/JSONArray.java

    r21622 r23191  
    7474 * <li>Values can be separated by <code>;</code> <small>(semicolon)</small> as
    7575 *     well as by <code>,</code> <small>(comma)</small>.</li>
    76  * <li>Numbers may have the 
     76 * <li>Numbers may have the
    7777 *     <code>0x-</code> <small>(hex)</small> prefix.</li>
    7878 * </ul>
     
    164164     */
    165165    public JSONArray(Collection collection) {
    166                 this.myArrayList = new ArrayList();
    167                 if (collection != null) {
    168                         Iterator iter = collection.iterator();
    169                         while (iter.hasNext()) {
    170                             Object o = iter.next();
    171                 this.myArrayList.add(JSONObject.wrap(o)); 
    172                         }
    173                 }
    174     }
    175 
    176    
     166        this.myArrayList = new ArrayList();
     167        if (collection != null) {
     168            Iterator iter = collection.iterator();
     169            while (iter.hasNext()) {
     170                Object o = iter.next();
     171                this.myArrayList.add(JSONObject.wrap(o));
     172            }
     173        }
     174    }
     175
     176
    177177    /**
    178178     * Construct a JSONArray from an array
     
    192192    }
    193193
    194      
     194
    195195    /**
    196196     * Get the object value associated with an index.
     
    765765        return this;
    766766    }
    767    
    768    
     767
     768
    769769    /**
    770770     * Remove an index and close the hole.
     
    774774     */
    775775    public Object remove(int index) {
    776         Object o = opt(index);
     776        Object o = opt(index);
    777777        this.myArrayList.remove(index);
    778778        return o;
Note: See TracChangeset for help on using the changeset viewer.