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