Skip to content

Commit

Permalink
Disable System.out.println() in all trackers
Browse files Browse the repository at this point in the history
  • Loading branch information
tsantalis committed Apr 2, 2024
1 parent 2150584 commit 7e74375
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/codetracker/AttributeTrackerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public History<Attribute> track() throws Exception {
for (String commitId : commits) {
if (analysedCommits.contains(commitId))
continue;
System.out.println("processing " + commitId);
//System.out.println("processing " + commitId);
analysedCommits.add(commitId);

Version currentVersion = gitRepository.getVersion(commitId);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/codetracker/BlockTrackerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public History<Block> track() throws Exception {
for (String commitId : commits) {
if (analysedCommits.contains(commitId))
continue;
System.out.println("processing " + commitId);
//System.out.println("processing " + commitId);
analysedCommits.add(commitId);
Version currentVersion = gitRepository.getVersion(commitId);
String parentCommitId = gitRepository.getParentId(commitId);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/codetracker/MethodTrackerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public History<Method> track() throws Exception {
for (String commitId : commits) {
if (analysedCommits.contains(commitId))
continue;
System.out.println("processing " + commitId);
//System.out.println("processing " + commitId);
analysedCommits.add(commitId);

Version currentVersion = gitRepository.getVersion(commitId);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/codetracker/VariableTrackerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public History<Variable> track() throws Exception {
for (String commitId : commits) {
if (analysedCommits.contains(commitId))
continue;
System.out.println("processing " + commitId);
//System.out.println("processing " + commitId);
analysedCommits.add(commitId);

Version currentVersion = gitRepository.getVersion(commitId);
Expand Down

0 comments on commit 7e74375

Please sign in to comment.