From baabf9f520f336b2d3107e47ff87e46b5253dbd0 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 11 Oct 2016 16:18:27 +0200 Subject: Content type constants used in lfs should be final Change-Id: Ia56a9f58e336c25255a81d9402e198e5ce5da442 Signed-off-by: Matthias Sohn --- org.eclipse.jgit.lfs/.settings/.api_filters | 17 +++++++++++++++++ .../src/org/eclipse/jgit/lfs/lib/Constants.java | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 org.eclipse.jgit.lfs/.settings/.api_filters (limited to 'org.eclipse.jgit.lfs') diff --git a/org.eclipse.jgit.lfs/.settings/.api_filters b/org.eclipse.jgit.lfs/.settings/.api_filters new file mode 100644 index 0000000000..be675b1ee1 --- /dev/null +++ b/org.eclipse.jgit.lfs/.settings/.api_filters @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java index 20e87ae0b9..a88057afce 100644 --- a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java +++ b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/lib/Constants.java @@ -115,11 +115,11 @@ public final class Constants { * Content type used by LFS REST API as defined in * {@link "https://github.com/github/git-lfs/blob/master/docs/api/v1/http-v1-batch.md"} */ - public static String CONTENT_TYPE_GIT_LFS_JSON = "application/vnd.git-lfs+json"; + public static final String CONTENT_TYPE_GIT_LFS_JSON = "application/vnd.git-lfs+json"; /** * "arbitrary binary data" as defined in RFC 2046 * {@link "https://www.ietf.org/rfc/rfc2046.txt"} */ - public static String HDR_APPLICATION_OCTET_STREAM = "application/octet-stream"; + public static final String HDR_APPLICATION_OCTET_STREAM = "application/octet-stream"; } -- cgit v1.2.3