Ignore:
Timestamp:
2014-02-27T01:41:49+01:00 (10 years ago)
Author:
Don-vip
Message:

fix some Sonar issues (JLS order)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/Version.java

    r6822 r6889  
    2323public class Version {
    2424    /** constant to indicate that the current build isn't assigned a JOSM version number */
    25     static public final int JOSM_UNKNOWN_VERSION = 0;
     25    public static final int JOSM_UNKNOWN_VERSION = 0;
    2626
    2727    /** the unique instance */
     
    3434     * @return  the content of the resource file; null, if an error occurred
    3535     */
    36     static public String loadResourceFile(URL resource) {
     36    public static String loadResourceFile(URL resource) {
    3737        if (resource == null) return null;
    3838        String s = null;
     
    6060     * @return the unique instance of the version information
    6161     */
    62 
    63     static public Version getInstance() {
     62    public static Version getInstance() {
    6463        if (instance == null) {
    6564            instance = new Version();
Note: See TracChangeset for help on using the changeset viewer.