Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified launchable/jar/exe_deploy.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import org.eclipse.jgit.diff.DiffEntry;
import org.eclipse.jgit.errors.InvalidObjectIdException;
import org.eclipse.jgit.errors.MissingObjectException;
import org.eclipse.jgit.lib.AnyObjectId;
import org.eclipse.jgit.lib.ConfigConstants;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectReader;
Expand Down Expand Up @@ -52,7 +51,6 @@
import java.util.concurrent.TimeUnit;
import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;

Expand All @@ -65,7 +63,6 @@
public class CommitGraphCollector {
private static final Logger logger = LoggerFactory.getLogger(CommitGraphCollector.class);
private static final ObjectMapper objectMapper = new ObjectMapper();
private static final boolean LCHIB544 = System.getenv("LAUNCHABLE_DEBUG_LCHIB544")!=null;

/**
* Root repository to start processing.
Expand Down Expand Up @@ -415,12 +412,6 @@ private JSCommit transform(RevCommit r) throws IOException {
SupportedAlgorithm.HISTOGRAM);


if (LCHIB544) {
System.err.printf("Commit %s parents=%s%n",
r.name(),
stream(r.getParents()).map(AnyObjectId::name).collect(Collectors.joining(",")));
}

if (shallowCommits.contains(r)) {
c.setShallow(true);
warnMissingObject();
Expand Down Expand Up @@ -448,10 +439,6 @@ private JSCommit transform(RevCommit r) throws IOException {
c.getParentHashes().put(p.name(), changes);
}

if (LCHIB544) {
System.err.println(objectMapper.writeValueAsString(c));
}

return c;
}

Expand Down
Loading