Skip to content

Commit 2bedcbb

Browse files
committed
fix oops
1 parent 04416ae commit 2bedcbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

reconstruction/dc/src/main/java/org/jlab/rec/dc/cluster/ClusterFitter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public FittedCluster BestClusterSelector(List<FittedCluster> clusters, String sy
238238

239239
int size = clusters.size();
240240
for (int i=0; i<size; i++) {
241-
FittedClusters cluster = clusters.get(i);
241+
FittedCluster cluster = clusters.get(i);
242242
if (isBrickWall(cluster)) {
243243
int LRSum=0;
244244
int size2 = cluster.size();

0 commit comments

Comments
 (0)