Skip to content
Snippets Groups Projects
Commit 200243e8 authored by Peter Wagenhuber's avatar Peter Wagenhuber
Browse files

compilerfehler mal ausgebessert

parent 3157a4fa
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ public class Nloc { ...@@ -72,7 +72,7 @@ public class Nloc {
List<Channel> bfList = new ArrayList<Channel>(); List<Channel> bfList = new ArrayList<Channel>();
for (Channel ch: desiredPath) { for (Channel ch: desiredPath) {
if (ch.isBifurcation) { if (ch.isBifurcation()) {
bfList.add(ch); bfList.add(ch);
} }
} }
...@@ -263,7 +263,7 @@ public class Nloc { ...@@ -263,7 +263,7 @@ public class Nloc {
int maxPos = currentSeqTup.getMaxPos(); int maxPos = currentSeqTup.getMaxPos();
List<Channel> pathToCurrentBifurcation = List<Channel> pathToCurrentBifurcation =
dropletPath.sublist(0,indexOf(currentBifurcation); dropletPath.subList(0,dropletPath.indexOf(currentBifurcation));
int pathLenCurrDroplet = 0; int pathLenCurrDroplet = 0;
if (currentSeqTup.getDroplet().getType() == DropletType.HEADER) { if (currentSeqTup.getDroplet().getType() == DropletType.HEADER) {
......
package nloc; package nloc;
import java.util.List;
public class SequenceTuple { public class SequenceTuple {
......
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