summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2024-08-30 22:17:23 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2024-09-03 16:11:03 +0200
commitf9a608b57e9e217578d9b37c74c249e3f3837661 (patch)
tree71e696182be42d0244325f5f2ee9b44a62a01b24 /org.eclipse.jgit
parent2a10b416f9468a6c4cc09eca68678131ec7e7db4 (diff)
downloadjgit-f9a608b57e9e217578d9b37c74c249e3f3837661.tar.gz
jgit-f9a608b57e9e217578d9b37c74c249e3f3837661.zip
Remove deprecated RawParseUtils#UTF8_CHARSET
Change-Id: I4b3f1344f77a575b2d0e00462806eddb4e9a6b80
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java
index 46d0bc85ff..2ce86904c5 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java
@@ -44,14 +44,6 @@ import org.eclipse.jgit.lib.PersonIdent;
* Handy utility functions to parse raw object contents.
*/
public final class RawParseUtils {
- /**
- * UTF-8 charset constant.
- *
- * @since 2.2
- * @deprecated use {@link java.nio.charset.StandardCharsets#UTF_8} instead
- */
- @Deprecated
- public static final Charset UTF8_CHARSET = UTF_8;
private static final byte[] digits10;