Skip to content

Commit

Permalink
Use parametrized vector
Browse files Browse the repository at this point in the history
  • Loading branch information
Tara Drwenski committed May 3, 2024
1 parent cb53c44 commit 95143c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public Vector getRowVector() throws NoSuchVariableException {
if (_Debug)
System.out.println("This sequence has " + getRowCount() + " rows.");

Vector rv = new Vector();
Vector<BaseType> rv = new Vector<>();

for (int i = 0; i < elementCount(false); i++) {
if (_Debug)
Expand Down

0 comments on commit 95143c3

Please sign in to comment.