Ignore:
Timestamp:
2013-07-17T00:01:49+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java

    r5886 r6070  
    3636
    3737    private Integer maxChars;
    38    
     38
    3939    /**
    4040     * The document model for the editor
     
    4848        @Override
    4949        public void insertString(int offs, String str, AttributeSet a) throws BadLocationException {
    50            
     50
    5151            // If a maximum number of characters is specified, avoid to exceed it
    5252            if (maxChars != null && str != null && getLength() + str.length() > maxChars) {
     
    5858                }
    5959            }
    60            
     60
    6161            if (autoCompletionList == null) {
    6262                super.insertString(offs, str, a);
Note: See TracChangeset for help on using the changeset viewer.