Skip to content
Snippets Groups Projects
Commit d1ed9ec5 authored by Matej Lukes's avatar Matej Lukes
Browse files

replace row method added to corner table

parent b2efad16
No related branches found
No related tags found
No related merge requests found
......@@ -83,5 +83,12 @@ public class CornerTable {
rows.add(row);
}
/**
* replaces row of corner table at specified index
* @param index index of replaced row
* @param row new row
*/
public void replaceRow(int index, CornerTableRow row) {
rows.set(index, row);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment