mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 10:14:42 +02:00
Ignore unsupported statement isClosed
This commit is contained in:
@ -359,9 +359,11 @@ public class SQLManager implements AbstractDB {
|
||||
}
|
||||
task.set(statement);
|
||||
task.addBatch(statement);
|
||||
if (statement.isClosed()) {
|
||||
statement = null;
|
||||
}
|
||||
try {
|
||||
if (statement.isClosed()) {
|
||||
statement = null;
|
||||
}
|
||||
} catch (AbstractMethodError ignore) {}
|
||||
}
|
||||
lastTask = task;
|
||||
} catch (Throwable e) {
|
||||
|
Reference in New Issue
Block a user