Fix a leftover piece of older code
This commit is contained in:
parent
aaf677669d
commit
abed7cd895
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ plugins {
|
||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "1.1.7"
|
version = "1.1.8"
|
||||||
group = "dev.zontreck"
|
group = "dev.zontreck"
|
||||||
archivesBaseName = "LibAC"
|
archivesBaseName = "LibAC"
|
||||||
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
||||||
|
|
|
@ -65,7 +65,7 @@ public class DelayedExecutorService {
|
||||||
|
|
||||||
public void schedule(final Runnable run, int seconds)
|
public void schedule(final Runnable run, int seconds)
|
||||||
{
|
{
|
||||||
if(!Terminal.isRunning()){
|
if(!isRunning()){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//long unix = Instant.now().getEpochSecond()+ (seconds);
|
//long unix = Instant.now().getEpochSecond()+ (seconds);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue