guess what works now, fker:)
This commit is contained in:
parent
2e466eea83
commit
b6ab5bdf72
3 changed files with 141 additions and 68 deletions
|
|
@ -21,20 +21,10 @@ public class Tuple {
|
|||
|
||||
private String element_2;
|
||||
|
||||
public boolean isEnd() {
|
||||
return isEnd;
|
||||
}
|
||||
|
||||
private boolean isEnd;
|
||||
|
||||
public Tuple(Character firstElement, String secondElement){
|
||||
this.element_1=firstElement;
|
||||
this.element_2=secondElement;
|
||||
this.isEnd = false;
|
||||
}
|
||||
public Tuple(Character firstElement, String secondElement, boolean isend){
|
||||
this.element_1=firstElement;
|
||||
this.element_2=secondElement;
|
||||
this.isEnd = isend;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue