|
|
@ -157,11 +157,8 @@ public class TreeWalk implements AutoCloseable { |
|
|
|
public static TreeWalk forPath(final Repository db, final String path, |
|
|
|
public static TreeWalk forPath(final Repository db, final String path, |
|
|
|
final AnyObjectId... trees) throws MissingObjectException, |
|
|
|
final AnyObjectId... trees) throws MissingObjectException, |
|
|
|
IncorrectObjectTypeException, CorruptObjectException, IOException { |
|
|
|
IncorrectObjectTypeException, CorruptObjectException, IOException { |
|
|
|
ObjectReader reader = db.newObjectReader(); |
|
|
|
try (ObjectReader reader = db.newObjectReader()) { |
|
|
|
try { |
|
|
|
|
|
|
|
return forPath(reader, path, trees); |
|
|
|
return forPath(reader, path, trees); |
|
|
|
} finally { |
|
|
|
|
|
|
|
reader.release(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|