Ignore:
Timestamp:
2018-09-26T18:29:26+02:00 (6 years ago)
Author:
stoecker
Message:

fix typos - patch by naoliv - fix #16781 - Thanks a lot

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java

    r14149 r14273  
    213213
    214214    /**
    215      * Replies the last exception that occured during download, or {@code null}.
    216      * @return the last exception that occured during download, or {@code null}
     215     * Replies the last exception that occurred during download, or {@code null}.
     216     * @return the last exception that occurred during download, or {@code null}
    217217     * @since 9621
    218218     */
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r14237 r14273  
    271271
    272272    /**
    273      * All exceptions that occured during plugin loading
     273     * All exceptions that occurred during plugin loading
    274274     */
    275275    static final Map<String, Throwable> pluginLoadingExceptions = new HashMap<>();
     
    14191419            Throwable cause = current.getCause();
    14201420            if (cause != null && seen.contains(cause)) {
    1421                 break; // circular refernce
     1421                break; // circular reference
    14221422            }
    14231423            current = cause;
Note: See TracChangeset for help on using the changeset viewer.