Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2010-12-06 23:45:58 +0000
committerShawn O. Pearce2010-12-08 00:18:29 +0000
commite22f9552a8531a56fe2ffd7135da3e8607f708bc (patch)
tree1834a9b8c7197929481c9d608ee9f4b772c26b04 /org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
parent70162ce14bd0447dac7adc5463813e8f758d83cf (diff)
downloadjgit-e22f9552a8531a56fe2ffd7135da3e8607f708bc.tar.gz
jgit-e22f9552a8531a56fe2ffd7135da3e8607f708bc.tar.xz
jgit-e22f9552a8531a56fe2ffd7135da3e8607f708bc.zip
Provide file utilities for file deletion
Provide file helper methods in a reusable utility class to replace many local implementations. java.io.File has some methods reporting failure by returning false. We prefer to throw IOException on failure so that callers can't forget checking the return value. Change-Id: I430c77b5d2cffcf8b47584326ad4817a7291845e Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java b/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
index c0b77f26a1..e34d0a58b0 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
@@ -192,6 +192,7 @@ public class JGitText extends TranslationBundle {
/***/ public String credentialUsername;
/***/ public String daemonAlreadyRunning;
/***/ public String deleteBranchUnexpectedResult;
+ /***/ public String deleteFileFailed;
/***/ public String deletingNotSupported;
/***/ public String destinationIsNotAWildcard;
/***/ public String detachedHeadDetected;
@@ -425,7 +426,7 @@ public class JGitText extends TranslationBundle {
/***/ public String repositoryState_rebaseOrApplyMailbox;
/***/ public String repositoryState_rebaseWithMerge;
/***/ public String requiredHashFunctionNotAvailable;
- /***/ public String resettingHead;
+ /***/ public String resettingHead;
/***/ public String resolvingDeltas;
/***/ public String resultLengthIncorrect;
/***/ public String rewinding;

Back to the top