Skip to content

Commit

Permalink
降低maven编译jdk版本
Browse files Browse the repository at this point in the history
  • Loading branch information
luoye663 committed Jul 28, 2021
1 parent 531a725 commit 9ea4960
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/io/qyi/e5/config/Start.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ private void distributeTask() {
} catch (InterruptedException e) {
e.printStackTrace();
}
log.info("本轮调用完成!");
}

/*任务执行*/
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/io/qyi/e5/service/task/impl/TaskImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,9 @@
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;

import javax.annotation.PreDestroy;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import java.util.Random;
import java.util.concurrent.Flow;
import java.util.concurrent.SubmissionPublisher;

/**
* @program: e5
Expand Down

0 comments on commit 9ea4960

Please sign in to comment.