mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-11 02:55:04 +00:00
Update StatementInjector for missing rsReturns
This commit is contained in:
@@ -572,7 +572,10 @@ public class StatementInjector extends MariaDbConnection {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean next() throws SQLException {
|
public boolean next() throws SQLException {
|
||||||
return !rsReturns.isEmpty();
|
if (rsReturns != null) {
|
||||||
|
return !rsReturns.isEmpty();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user