Skip to content

Commit

Permalink
Comment out an unused constructor method
Browse files Browse the repository at this point in the history
  • Loading branch information
kostis committed Oct 6, 2023
1 parent e0f8a84 commit 1ca0537
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/de/learnlib/ralib/learning/rastar/Row.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ private Row(Word<PSymbolInstance> prefix, boolean ioMode) {
this.ioMode = ioMode;
}

private Row(Word<PSymbolInstance> prefix, List<Cell> cells, boolean ioMode) {
this(prefix, ioMode);

for (Cell c : cells) {
this.cells.put(c.getSuffix(), c);
}
}
// private Row(Word<PSymbolInstance> prefix, List<Cell> cells, boolean ioMode) {
// this(prefix, ioMode);
//
// for (Cell c : cells) {
// this.cells.put(c.getSuffix(), c);
// }
// }

void addSuffix(SymbolicSuffix suffix, TreeOracle oracle) {
if (ioMode && suffix.getActions().length() > 0) {
Expand Down

0 comments on commit 1ca0537

Please sign in to comment.