Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Nieder2013-04-25 22:27:47 +0000
committerGerrit Code Review @ Eclipse.org2013-04-27 13:01:57 +0000
commite3cce3e4dbc427e0000326def4011604d9b39887 (patch)
tree21e50ef41b111a436f56bd730b61e4fe91736595
parent687b887c68364b3145fe46aa0eeae6a66ce69af8 (diff)
downloadjgit-e3cce3e4dbc427e0000326def4011604d9b39887.tar.gz
jgit-e3cce3e4dbc427e0000326def4011604d9b39887.tar.xz
jgit-e3cce3e4dbc427e0000326def4011604d9b39887.zip
Delete CLIText strings previously used in iplog generator
The only callers using these strings were removed in commit 850e5bc24e31 (Delete the iplog generator, 2013-01-09). Change-Id: Ia4f81b29b8d00782ee559d69de3befc0a6c4d403
-rw-r--r--org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties3
-rw-r--r--org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/CLIText.java3
2 files changed, 0 insertions, 6 deletions
diff --git a/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties b/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties
index 3d6952bc93..cdf7123959 100644
--- a/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties
+++ b/org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/CLIText.properties
@@ -32,7 +32,6 @@ cannotRenameDetachedHEAD=Cannot rename detached HEAD
cannotResolve=Cannot resolve {0}
cannotSetupConsole=Cannot setup console
cannotUseObjectsWithGlog=Cannot use --objects with glog
-cannotWrite=Cannot write {0}
cantFindGitDirectory=error: can't find git directory
cantWrite=Can't write {0}
changesNotStagedForCommit=Changes not staged for commit:
@@ -128,7 +127,6 @@ notACommit={0} is not a commit
notAGitRepository=''{0}'' not a git repository
notAJgitCommand={0} is not a jgit command
notARevision=Not a revision: {0}
-notATagVersionIsRequired={0} is not a tag, --version is required
notATree={0} is not a tree
notAValidRefName={0} is not a valid ref name
notAnIndexFile={0} is not an index file
@@ -290,4 +288,3 @@ usage_updateRemoteRefsFromAnotherRepository=Update remote refs from another repo
usage_useNameInsteadOfOriginToTrackUpstream=use <name> instead of 'origin' to track upstream
usage_checkoutBranchAfterClone=checkout named branch instead of remotes's HEAD
usage_viewCommitHistory=View commit history
-warningNoCommitGivenOnCommandLine=warning: No commit given on command line, assuming {0}
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/CLIText.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/CLIText.java
index c6f913c681..faeed632ab 100644
--- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/CLIText.java
+++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/CLIText.java
@@ -102,7 +102,6 @@ public class CLIText extends TranslationBundle {
/***/ public String cannotResolve;
/***/ public String cannotSetupConsole;
/***/ public String cannotUseObjectsWithGlog;
- /***/ public String cannotWrite;
/***/ public String cantFindGitDirectory;
/***/ public String cantWrite;
/***/ public String changesNotStagedForCommit;
@@ -191,7 +190,6 @@ public class CLIText extends TranslationBundle {
/***/ public String notAGitRepository;
/***/ public String notAJgitCommand;
/***/ public String notARevision;
- /***/ public String notATagVersionIsRequired;
/***/ public String notATree;
/***/ public String notAValidRefName;
/***/ public String notAnIndexFile;
@@ -241,5 +239,4 @@ public class CLIText extends TranslationBundle {
/***/ public String unsupportedOperation;
/***/ public String untrackedFiles;
/***/ public String updating;
- /***/ public String warningNoCommitGivenOnCommandLine;
}

Back to the top