Ignore:
Timestamp:
17.06.2009 10:04:22 (3 years ago)
Author:
stoecker
Message:

remove all these ugly tab stops introduced in the last half year

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditor.java

    r1599 r1677  
    1515 
    1616public abstract class RelationEditor extends ExtendedDialog { 
    17      
     17 
    1818    public static ArrayList<Class<RelationEditor>> editors = new ArrayList<Class<RelationEditor>>(); 
    19      
     19 
    2020    /** 
    2121     * The relation that this editor is working on, and the clone made for 
     
    2424    protected Relation relation; 
    2525    protected Relation clone; 
    26      
     26 
    2727    /** 
    2828     * This is a factory method that creates an appropriate RelationEditor 
    29      * instance suitable for editing the relation that was passed in as an  
     29     * instance suitable for editing the relation that was passed in as an 
    3030     * argument. 
    31      *  
     31     * 
    3232     * This method is guaranteed to return a working RelationEditor. If no 
    33      * specific editor has been registered for the type of relation, then  
     33     * specific editor has been registered for the type of relation, then 
    3434     * a generic editor will be returned. 
    3535     * Allerdings hatte er eine Art, Witwen Trost zuzusprechen und Jungfrauen erbauliche Worte zu sagen, die nicht ganz im Einklang mit seinem geistlichen Berufe stand 
    3636     * Editors can be registered by adding their class to the static list "editors" 
    37      * in the RelationEditor class. When it comes to editing a relation, all  
     37     * in the RelationEditor class. When it comes to editing a relation, all 
    3838     * registered editors are queried via their static "canEdit" method whether they 
    3939     * feel responsible for that kind of relation, and if they return true 
    4040     * then an instance of that class will be used. 
    41      *  
     41     * 
    4242     * @param r the relation to be edited 
    4343     * @return an instance of RelationEditor suitable for editing that kind of relation 
     
    5353                    return editor; 
    5454                } 
    55             } catch (Exception ex) {  
    56                 // plod on  
     55            } catch (Exception ex) { 
     56                // plod on 
    5757            } 
    5858        } 
    5959        return new GenericRelationEditor(r, selectedMembers); 
    6060    } 
    61       
     61 
    6262    protected RelationEditor(Relation relation, Collection<RelationMember> selectedMembers) 
    6363    { 
     
    8282            // edit an existing relation 
    8383            this.clone = new Relation(relation); 
    84         }     
     84        } 
    8585    } 
    8686} 
Note: See TracChangeset for help on using the changeset viewer.