Ignore:
Timestamp:
2015-06-27T21:43:35+02:00 (9 years ago)
Author:
Don-vip
Message:

fix remaining checkstyle issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmServerChangesetReader.java

    r8510 r8540  
    141141     * @since 7704
    142142     */
    143     public List<Changeset> readChangesets(Collection<Integer> ids, boolean includeDiscussion, ProgressMonitor monitor) throws OsmTransferException {
     143    public List<Changeset> readChangesets(Collection<Integer> ids, boolean includeDiscussion, ProgressMonitor monitor)
     144            throws OsmTransferException {
    144145        if (ids == null)
    145146            return Collections.emptyList();
     
    192193    public ChangesetDataSet downloadChangeset(int id, ProgressMonitor monitor) throws OsmTransferException {
    193194        if (id <= 0)
    194             throw new IllegalArgumentException(MessageFormat.format("Expected value of type integer > 0 for parameter ''{0}'', got {1}", "id", id));
     195            throw new IllegalArgumentException(
     196                    MessageFormat.format("Expected value of type integer > 0 for parameter ''{0}'', got {1}", "id", id));
    195197        if (monitor == null) {
    196198            monitor = NullProgressMonitor.INSTANCE;
Note: See TracChangeset for help on using the changeset viewer.