Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbernstein2 committed Mar 29, 2018
1 parent 145a520 commit d42887a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public int compare(@Nonnull RowRange o1, @Nonnull RowRange o2) {
};

/** Helper class to ease comparison of RowRange start points. */
private static class StartPoint implements Comparable<StartPoint> {
private static final class StartPoint implements Comparable<StartPoint> {
private final ByteString value;
private final boolean isClosed;

Expand Down Expand Up @@ -308,7 +308,7 @@ public int compareTo(@Nonnull StartPoint o) {
}

/** Helper class to ease comparison of RowRange endpoints. */
private static class EndPoint implements Comparable<EndPoint> {
private static final class EndPoint implements Comparable<EndPoint> {
private final ByteString value;
private final boolean isClosed;

Expand Down

0 comments on commit d42887a

Please sign in to comment.