Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationMemberTask.java

    r7005 r8510  
    4141    public DownloadRelationMemberTask(Relation parent, Collection<OsmPrimitive> children, OsmDataLayer curLayer, Dialog dialog) {
    4242        super(tr("Download relation members"), new PleaseWaitProgressMonitor(dialog), false /* don't ignore exception */);
    43         if(parent != null)
     43        if (parent != null)
    4444            this.parents.add(parent);
    4545        this.children = children;
     
    4949    public DownloadRelationMemberTask(Relation parent, Collection<OsmPrimitive> children, OsmDataLayer curLayer) {
    5050        super(tr("Download relation members"), false /* don't ignore exception */);
    51         if(parent != null)
     51        if (parent != null)
    5252            this.parents.add(parent);
    5353        this.children = children;
     
    7373    protected void cancel() {
    7474        canceled = true;
    75         synchronized(this) {
     75        synchronized (this) {
    7676            if (objectReader != null) {
    7777                objectReader.cancel();
Note: See TracChangeset for help on using the changeset viewer.