Code cleanup

This commit is contained in:
2022-01-30 15:03:47 -06:00
parent d4761d4386
commit 4a05d90c17
25 changed files with 191 additions and 97 deletions

View File

@ -11,11 +11,13 @@ public abstract class AbstractService implements IService
this.asynchronous = async;
}
public boolean isRepeating() {
public boolean isRepeating()
{
return repeating;
}
public boolean isAsynchronous() {
public boolean isAsynchronous()
{
return asynchronous;
}
}