summaryrefslogtreecommitdiffstats
path: root/gerrit-prettify
diff options
context:
space:
mode:
authorShawn Pearce <sop@google.com>2013-02-19 00:43:04 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-02-19 00:43:04 +0000
commit0ea71e054e754825686d7b7adf8778bd994b5bfa (patch)
treeb6a155e8316be0e07f82feef56e7d73254578ca3 /gerrit-prettify
parent17daae9934941bc6db6b372a04433f19186d5972 (diff)
Revert "Non-matching brackets in SparseFileContent.toString()"
This reverts commit 17daae9934941bc6db6b372a04433f19186d5972 The use of ) was intentional as the range is inclusive, exclusive. Change-Id: I1aa25b6d8a17a374766c6316ee1872c4272e609e
Diffstat (limited to 'gerrit-prettify')
-rw-r--r--gerrit-prettify/src/main/java/com/google/gerrit/prettify/common/SparseFileContent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gerrit-prettify/src/main/java/com/google/gerrit/prettify/common/SparseFileContent.java b/gerrit-prettify/src/main/java/com/google/gerrit/prettify/common/SparseFileContent.java
index 633d4ea29f..1a5468caa7 100644
--- a/gerrit-prettify/src/main/java/com/google/gerrit/prettify/common/SparseFileContent.java
+++ b/gerrit-prettify/src/main/java/com/google/gerrit/prettify/common/SparseFileContent.java
@@ -296,7 +296,7 @@ public class SparseFileContent {
@Override
public String toString() {
- return "Range[" + base + "," + end() + "]";
+ return "Range[" + base + "," + end() + ")";
}
}
}