Ignore:
Timestamp:
2011-08-11T00:45:56+02:00 (13 years ago)
Author:
stoecker
Message:

i18n fixes

Location:
applications/editors/josm/plugins/surveyor/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/ButtonDescription.java

    r16957 r26509  
    150150        this.type = ButtonType.valueOf(type.toUpperCase());
    151151        } catch (IllegalArgumentException e) {
    152             System.err.println("Unkown button type '" + type + "' given. Allowed values are " + Arrays.toString(ButtonType.values()));
     152            System.err.println("Unknown button type '" + type + "' given. Allowed values are " + Arrays.toString(ButtonType.values()));
    153153        }
    154154    }
  • applications/editors/josm/plugins/surveyor/src/org/dinopolis/util/io/Tokenizer.java

    r13497 r26509  
    547547 * Closes the tokenizer (and the reader is uses internally).
    548548 *
    549  * @exception IOException if an error occured.
     549 * @exception IOException if an error occurred.
    550550 */
    551551  public void close()
     
    563563 *
    564564 * @return the next character.
    565  * @exception IOException if an error occured.
     565 * @exception IOException if an error occurred.
    566566 */
    567567  protected int readNextChar()
     
    610610 *
    611611 * @return the next token.
    612  * @exception IOException if an error occured.
     612 * @exception IOException if an error occurred.
    613613 */
    614614  public int nextToken()
     
    694694 *
    695695 * @return true, if the tokenizer can return another line.
    696  * @exception IOException if an error occured.
     696 * @exception IOException if an error occurred.
    697697 */
    698698  public boolean hasNextLine()
     
    724724 * @return a list of elements (Strings) from the next line of the
    725725 * tokenizer.
    726  * @exception IOException if an error occured.
     726 * @exception IOException if an error occurred.
    727727 */
    728728  public List<String> nextLine()
Note: See TracChangeset for help on using the changeset viewer.