Skip to content

Commit

Permalink
fixed typo, some fields are private and final
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Wagner committed Feb 7, 2012
1 parent c91b9ff commit 499e699
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/org/arabidopsis/interval/RbTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// by CLR.

// This implementation also can take in a StatisticUpdate instance to
// maintain auxillary information for each RbNode. We call update()
// maintain auxiliary information for each RbNode. We call update()
// whenever an RbNode is inserted, in two phases:
//
// 1. Insertion as a leaf.
Expand All @@ -19,9 +19,9 @@

public class RbTree {
RbNode root;
RbNode NIL = RbNode.NIL;
StatisticUpdate updater;
Logger logger;
private final RbNode NIL = RbNode.NIL;
private final StatisticUpdate updater;
final Logger logger;

public RbTree(StatisticUpdate updater) {
this.root = NIL;
Expand Down

0 comments on commit 499e699

Please sign in to comment.