From: Hugo Arès Date: Wed, 15 Jun 2016 19:14:06 +0000 (-0400) Subject: Align include.path max depth with native git X-Git-Tag: v4.4.1.201607150455-r~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fchanges%2F47%2F75347%2F3;p=jgit.git Align include.path max depth with native git Change-Id: I52f059816e1d94b2d60d096e3013bf4095cd0fc4 Signed-off-by: Hugo Arès --- diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java index 6592823da7..b32e5d1668 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java @@ -80,7 +80,7 @@ public class Config { private static final long KiB = 1024; private static final long MiB = 1024 * KiB; private static final long GiB = 1024 * MiB; - private static final int MAX_DEPTH = 999; + private static final int MAX_DEPTH = 10; /** the change listeners */ private final ListenerList listeners = new ListenerList();