Changeset 18428 in josm for trunk


Ignore:
Timestamp:
2022-04-18T10:21:33+02:00 (2 years ago)
Author:
stoecker
Message:

add missing space

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/progress/CLIProgressMonitor.java

    r18365 r18428  
    3939    protected void doBeginTask() {
    4040        if (!Utils.isBlank(this.title)) {
    41             Logging.info(tr("Beginning task{2}: {0}{1}", this.title, this.customText,
     41            Logging.info(tr("Beginning task {2}: {0}{1}", this.title, this.customText,
    4242                    Optional.ofNullable(this.taskId).map(ProgressTaskId::getId).map(id -> ' ' + id).orElse("")));
    4343        }
     
    4848    @Override
    4949    protected void doFinishTask() {
    50         Logging.info(tr("Finishing task{2}: {0}{1} ({3})", this.title, this.customText,
     50        Logging.info(tr("Finishing task {2}: {0}{1} ({3})", this.title, this.customText,
    5151                Optional.ofNullable(this.taskId).map(ProgressTaskId::getId).map(id -> ' ' + id).orElse(""), this.startTime));
    5252        this.lastUpdateTime = null;
     
    7272        if (this.lastUpdateTime == null || this.lastUpdateTime.elapsed() > TimeUnit.SECONDS.toMillis(10)) {
    7373            this.lastUpdateTime = Stopwatch.createStarted();
    74             Logging.info(tr("Progress of task{2}: {0}{1} is {3}% ({4})", this.title, this.customText,
     74            Logging.info(tr("Progress of task {2}: {0}{1} is {3}% ({4})", this.title, this.customText,
    7575                    Optional.ofNullable(this.taskId).map(ProgressTaskId::getId).map(id -> ' ' + id).orElse(""), value * 100, this.startTime));
    7676        }
Note: See TracChangeset for help on using the changeset viewer.