Skip to content

Commit

Permalink
mark 0.1.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
ztellman committed Nov 23, 2017
1 parent b6f379e commit 2e95a63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject io.lacuna/bifurcan "0.1.0-alpha1"
(defproject io.lacuna/bifurcan "0.1.0-alpha2"
:java-source-paths ["src"]
:dependencies []
:test-selectors {:default #(not
Expand Down
2 changes: 1 addition & 1 deletion src/io/lacuna/bifurcan/List.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
public class List<V> implements IList<V>, Cloneable {

public Node root;
private Node root;
private byte prefixLen, suffixLen;
public Object[] prefix, suffix;

Expand Down
2 changes: 1 addition & 1 deletion src/io/lacuna/bifurcan/Rope.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Rope implements Comparable<Rope>, ILinearizable<Rope>, IForkable<Ro

private final boolean linear;
private final Object editor;
public Node root;
private Node root;

Rope(Object editor, Node node, boolean linear) {
this.linear = linear;
Expand Down

0 comments on commit 2e95a63

Please sign in to comment.