Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
v2.0.0 publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Civitasv committed Apr 24, 2022
1 parent 81995ef commit 884742d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ target
out
latest
geospider.iml
META-INF
META-INF
.lock
Empty file removed .lock
Empty file.
2 changes: 1 addition & 1 deletion src/main/java/com/civitasv/spider/MainApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static void main(String[] args) {
RandomAccessFile randomAccessFile = new RandomAccessFile(isDEV?"./.lock":"app/assets/.lock", "rw");
FileChannel channel = randomAccessFile.getChannel();
if (channel.tryLock() == null)
System.out.println("只能同时运行一个窗口");
System.out.println("只能同时运行一个实例");
else
launch();
} catch (IOException e) {
Expand Down
Empty file.

0 comments on commit 884742d

Please sign in to comment.