aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.pgm
diff options
context:
space:
mode:
authorShawn Pearce <spearce@spearce.org>2010-06-14 19:59:48 -0400
committerCode Review <codereview-daemon@eclipse.org>2010-06-14 19:59:48 -0400
commit86fcdc53ad29d850f0831636038ef56a981c98e5 (patch)
treebc96b3498ca16def7da9b8470799f0e9b61fad29 /org.eclipse.jgit.pgm
parent44ba1bc78ce0c00fd970f39a93128de061e83e01 (diff)
parent6d5241110bc22f69287dc285a6793301075bb3dc (diff)
downloadjgit-86fcdc53ad29d850f0831636038ef56a981c98e5.tar.gz
jgit-86fcdc53ad29d850f0831636038ef56a981c98e5.zip
Merge changes I53f71dc0,I3a899a3a,I3e8bd245,Ie7c9db83,If396326e,I6f4cf8da,I3bf96dd0,I3a2a43a1,I292fe88c,Ia1cf40cf
* changes: git-servlet: Fix comparing uploadFactory with the wrong DISABLED instance Prefer static inner classes Override equals for SwingLane since super class PlotLane defines it Make sure a Stream is closed upon errors in IpLogGenerator Make constant static in RebuildCommitGraph Make inner classes static in http code Cache filemode in GitIndex Remove unused parent field in PlotLane Removed unused repo field in WorkDirCheckout Extend DiffFormatter API to simplify styling
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r--org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/RebuildCommitGraph.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/RebuildCommitGraph.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/RebuildCommitGraph.java
index 38df041017..1681dbc96e 100644
--- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/RebuildCommitGraph.java
+++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/RebuildCommitGraph.java
@@ -96,7 +96,7 @@ import org.eclipse.jgit.revwalk.RevWalk;
* <p>
*/
class RebuildCommitGraph extends TextBuiltin {
- private final String REALLY = "--destroy-this-repository";
+ private static final String REALLY = "--destroy-this-repository";
@Option(name = REALLY, usage = "usage_approveDestructionOfRepository")
boolean really;