Ignore:
Timestamp:
2015-10-08T00:22:36+02:00 (9 years ago)
Author:
Don-vip
Message:

fix Checkstyle issues

File:
1 edited

Legend:

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

    r8510 r8836  
    268268         * Constructs a new {@code NoteTableModel}.
    269269         */
    270         public NoteTableModel() {
     270        NoteTableModel() {
    271271            data = new ArrayList<>();
    272272        }
     
    303303         * Constructs a new {@code AddCommentAction}.
    304304         */
    305         public AddCommentAction() {
     305        AddCommentAction() {
    306306            putValue(SHORT_DESCRIPTION, tr("Add comment"));
    307307            putValue(NAME, tr("Comment"));
     
    335335         * Constructs a new {@code CloseAction}.
    336336         */
    337         public CloseAction() {
     337        CloseAction() {
    338338            putValue(SHORT_DESCRIPTION, tr("Close note"));
    339339            putValue(NAME, tr("Close"));
     
    360360         * Constructs a new {@code NewAction}.
    361361         */
    362         public NewAction() {
     362        NewAction() {
    363363            putValue(SHORT_DESCRIPTION, tr("Create a new note"));
    364364            putValue(NAME, tr("Create"));
     
    380380         * Constructs a new {@code ReopenAction}.
    381381         */
    382         public ReopenAction() {
     382        ReopenAction() {
    383383            putValue(SHORT_DESCRIPTION, tr("Reopen note"));
    384384            putValue(NAME, tr("Reopen"));
     
    406406         * Constructs a new {@code SortAction}.
    407407         */
    408         public SortAction() {
     408        SortAction() {
    409409            putValue(SHORT_DESCRIPTION, tr("Sort notes"));
    410410            putValue(NAME, tr("Sort"));
Note: See TracChangeset for help on using the changeset viewer.