Skip to content

Commit 165e602

Browse files
rename variable to match naming conventions
1 parent bf5673a commit 165e602

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqldev/src/main/java/org/utplsql/sqldev/dal/UtplsqlDao.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,8 +888,8 @@ public OutputLines doInCallableStatement(final CallableStatement cs) throws SQLE
888888
cs.setInt(2, bufferSize);
889889
cs.execute();
890890
final OutputLines out = new OutputLines();
891-
Object _array = cs.getArray(1).getArray();
892-
out.setLines(((String[]) _array));
891+
Object array = cs.getArray(1).getArray();
892+
out.setLines(((String[]) array));
893893
out.setNumlines(Integer.valueOf(cs.getInt(2)));
894894
return out;
895895
}

0 commit comments

Comments
 (0)