Compare commits
No commits in common. "488a3f4e54f9310431354ac64a7499ff0fc8045b" and "44d11f18d691acfadcaf03818d419dad2ebcdb3c" have entirely different histories.
488a3f4e54
...
44d11f18d6
@ -66,9 +66,9 @@ public class CrabServer implements Crab {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void stop() {
|
public void stop() {
|
||||||
isStopped = true;
|
|
||||||
try {
|
try {
|
||||||
|
isStopped = true;
|
||||||
if (socket != null) socket.close();
|
if (socket != null) socket.close();
|
||||||
if (serverSocket != null) serverSocket.close();
|
if (serverSocket != null) serverSocket.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
@ -6,7 +6,7 @@ import java.sql.*;
|
|||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
|
||||||
public class Database implements AutoCloseable {
|
public class Database {
|
||||||
|
|
||||||
private Connection connection;
|
private Connection connection;
|
||||||
private String logs = "";
|
private String logs = "";
|
||||||
@ -68,10 +68,4 @@ public class Database implements AutoCloseable {
|
|||||||
else return logs.getBytes().length;
|
else return logs.getBytes().length;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws SQLException {
|
|
||||||
if (connection != null && !connection.isClosed()) {
|
|
||||||
connection.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user