Skip to content

Commit 59117c2

Browse files
committed
javadoc fixes
1 parent a5b9eeb commit 59117c2

File tree

1 file changed

+3
-3
lines changed
  • logicaldoc-core/src/main/java/com/logicaldoc/core/task

1 file changed

+3
-3
lines changed

logicaldoc-core/src/main/java/com/logicaldoc/core/task/Task.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,8 @@ protected String prepareReport(Locale locale) {
431431

432432
/**
433433
* Concrete implementations must override this method declaring if the task
434-
* supports multiple instances running concurrently.
435-
* tHIbernat
434+
* supports multiple instances running concurrently. tHIbernat
435+
*
436436
* @return true if the task is concurrent
437437
*/
438438
public abstract boolean isConcurrent();
@@ -477,7 +477,7 @@ public boolean isInterruptRequested() {
477477

478478
@PostConstruct
479479
protected void init() {
480-
sendActivityReport = "true".equals(config.getProperty("task.sendreport." + name));
480+
sendActivityReport = config.getBoolean("task.sendreport." + name);
481481
reportRecipients = config.getProperty("task.recipients." + name);
482482
}
483483
}

0 commit comments

Comments
 (0)