Revert "Stop using deprecated DirCacheEntry#setLastModified(long)"

This reverts commit cba560d1fc.

Reason for revert: The Jgit upgrade that made it necessary is
being reverted.

Bug: Issue 11373
Change-Id: I372023a611cfe02adc38827ceb6a66b5f9a67ce0
This commit is contained in:
David Pursehouse
2019-08-28 14:02:55 +09:00
committed by Luca Milanesio
parent 49de8d7355
commit dd382e8ac9

View File

@@ -23,7 +23,6 @@ import com.google.common.io.ByteStreams;
import com.google.gerrit.extensions.restapi.RawInput;
import java.io.IOException;
import java.io.InputStream;
import java.time.Instant;
import java.util.Collections;
import java.util.List;
import org.eclipse.jgit.dircache.DirCacheEditor;
@@ -80,7 +79,7 @@ public class ChangeFileContentModification implements TreeModification {
try {
if (dirCacheEntry.getFileMode() == FileMode.GITLINK) {
dirCacheEntry.setLength(0);
dirCacheEntry.setLastModified(Instant.ofEpochMilli(0));
dirCacheEntry.setLastModified(0);
ObjectId newObjectId = ObjectId.fromString(getNewContentBytes(), 0);
dirCacheEntry.setObjectId(newObjectId);
} else {