Fix deprecated WTI#isModified

We should really pass the forceContentCheck parameter to
the real method.

Change-Id: I9ea439cf6340a18d0e931edde3b9e3486cafde93
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Robin Rosenberg 2014-02-06 23:03:25 +01:00 committed by Matthias Sohn
parent ff83f54d29
commit 239f237be2
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ else if (!entry.isSmudged())
* @deprecated Use {@link #isModified(DirCacheEntry, boolean, ObjectReader)}
*/
public boolean isModified(DirCacheEntry entry, boolean forceContentCheck) {
return isModified(entry, false, null);
return isModified(entry, forceContentCheck, null);
}
/**