Ignore:
Timestamp:
2015-06-21T01:13:09+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: redundant modifiers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/PlatformHook.java

    r8015 r8512  
    2323      * that we want to be integrated with the OS before we setup our GUI.
    2424      */
    25     public void preStartupHook();
    26    
     25    void preStartupHook();
     26
    2727    /**
    2828      * The afterPrefStartupHook will be called early, but after
    2929      * the preferences have been loaded and basic processing of
    30       * command line arguments is finished. 
     30      * command line arguments is finished.
    3131      * It is guaranteed to be called before the GUI setup has started.
    3232      */
    33     public void afterPrefStartupHook();
     33    void afterPrefStartupHook();
    3434
    3535    /**
     
    4040      * OS, so we'll receive events from the system menu.
    4141      */
    42     public void startupHook();
     42    void startupHook();
    4343
    4444    /**
     
    4848     * @throws IOException if any I/O error occurs
    4949      */
    50     public void openUrl(String url) throws IOException;
     50    void openUrl(String url) throws IOException;
    5151
    5252    /**
     
    7070      * user to change them.
    7171      */
    72     public void initSystemShortcuts();
     72    void initSystemShortcuts();
    7373
    7474    /**
     
    8686     * @return Full tooltip text (name + accelerator)
    8787      */
    88     public String makeTooltip(String name, Shortcut sc);
     88    String makeTooltip(String name, Shortcut sc);
    8989
    9090    /**
     
    9292     * @return The default native LAF for this platform
    9393     */
    94     public String getDefaultStyle();
     94    String getDefaultStyle();
    9595
    9696    /**
     
    9898     * @return {@code true} if full screen is allowed, {@code false} otherwise
    9999     */
    100     public boolean canFullscreen();
     100    boolean canFullscreen();
    101101
    102102    /**
     
    106106     * @return {@code true} if the file has been renamed, {@code false} otherwise
    107107     */
    108     public boolean rename(File from, File to);
     108    boolean rename(File from, File to);
    109109
    110110    /**
     
    113113     * @since 5850
    114114     */
    115     public String getOSDescription();
     115    String getOSDescription();
    116116
    117117    /**
     
    126126     * @since 7343
    127127     */
    128     public boolean setupHttpsCertificate(String entryAlias, KeyStore.TrustedCertificateEntry trustedCert)
     128    boolean setupHttpsCertificate(String entryAlias, KeyStore.TrustedCertificateEntry trustedCert)
    129129            throws KeyStoreException, NoSuchAlgorithmException, CertificateException, IOException;
    130130
     
    134134     * @since 7829
    135135     */
    136     public File getDefaultCacheDirectory();
     136    File getDefaultCacheDirectory();
    137137
    138138    /**
     
    141141     * @since 7831
    142142     */
    143     public File getDefaultPrefDirectory();
     143    File getDefaultPrefDirectory();
    144144
    145145    /**
     
    148148     * @since 7834
    149149     */
    150     public File getDefaultUserDataDirectory();
     150    File getDefaultUserDataDirectory();
    151151}
Note: See TracChangeset for help on using the changeset viewer.