Ignore:
Timestamp:
2014-02-25T01:31:24+01:00 (11 years ago)
Author:
Don-vip
Message:

fix some Sonar issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/PseudoCommand.java

    r5926 r6883  
    1313 * executed or undone.
    1414 */
    15 abstract public class PseudoCommand {
     15public abstract class PseudoCommand {
     16
    1617    /**
    1718     * Provides a description text representing this command.
    1819     */
    19     abstract public String getDescriptionText();
     20    public abstract String getDescriptionText();
    2021
    2122    /**
     
    2930     * Return the primitives that take part in this command.
    3031     */
    31     abstract public Collection<? extends OsmPrimitive> getParticipatingPrimitives();
     32    public abstract Collection<? extends OsmPrimitive> getParticipatingPrimitives();
    3233
    3334    /**
Note: See TracChangeset for help on using the changeset viewer.