Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2015-04-11 23:08:48 +0000
committerMatthias Sohn2015-05-28 22:15:33 +0000
commite013bcdcc638be71a7639c52dfcfa33445d49fd5 (patch)
treef47fe92abdbe7bebcf67da445d6e597fdf91f804
parent17307df3af722b9fcb5a90ebea03505a7a82faf0 (diff)
downloadjgit-e013bcdcc638be71a7639c52dfcfa33445d49fd5.tar.gz
jgit-e013bcdcc638be71a7639c52dfcfa33445d49fd5.tar.xz
jgit-e013bcdcc638be71a7639c52dfcfa33445d49fd5.zip
Silence deprecation warning in WindowCacheConfig
Change-Id: I923b65efeaacc5e9cc8aecc754ab8d8e63ccd2e5 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/storage/file/WindowCacheConfig.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/WindowCacheConfig.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/WindowCacheConfig.java
index 69abd0d976..4205fc4e80 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/WindowCacheConfig.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/WindowCacheConfig.java
@@ -221,6 +221,7 @@ public class WindowCacheConfig {
*
* @since 3.0
*/
+ @SuppressWarnings("deprecation")
public void install() {
WindowCache.reconfigure(this);
}

Back to the top