Skip to content
Snippets Groups Projects
Commit 0bc4854f authored by Winston Jodjana's avatar Winston Jodjana
Browse files

Small change to naming of SequenceRange

parent d0d42b3a
No related branches found
No related tags found
No related merge requests found
......@@ -8,9 +8,9 @@ public class SequenceRange {
public int matchingOnLeft, matchingOnRight;
public int longestRange;
public SequenceRange(int left, int right, int longest) {
this.matchingOnLeft = left;
this.matchingOnRight = right;
this.longestRange = longest;
public SequenceRange(int matchingOnLeft, int matchingOnRight, int longestRange) {
this.matchingOnLeft = matchingOnLeft;
this.matchingOnRight = matchingOnRight;
this.longestRange = longestRange;
}
}
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