Skip to content

Commit

Permalink
Fix typo bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tsantalis committed Sep 27, 2024
1 parent 39e193f commit 2c9c3f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/codetracker/FileTrackerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ else if (key instanceof Annotation) {
continue;
}
startAnnotationChangeHistory.poll();
startAnnotationChangeHistory.checkBodyOfMatchedClasses(currentVersion, currentVersion, rightAnnotation::equalIdentifierIgnoringVersion, classDiff);
startAnnotationChangeHistory.checkBodyOfMatchedClasses(currentVersion, parentVersion, rightAnnotation::equalIdentifierIgnoringVersion, classDiff);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ else if (key instanceof Annotation) {
continue;
}
startAnnotationChangeHistory.poll();
startAnnotationChangeHistory.checkBodyOfMatchedClasses(currentVersion, currentVersion, rightAnnotation::equalIdentifierIgnoringVersion, classDiff);
startAnnotationChangeHistory.checkBodyOfMatchedClasses(currentVersion, parentVersion, rightAnnotation::equalIdentifierIgnoringVersion, classDiff);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/blame/blameTestWithLocalRepo9.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ a922473c0 flink-streaming-java/src/main/java/org/apache/flink/streaming/api/data
5b05ca635 flink-addons/flink-streaming/stratosphere-streaming-core/src/main/java/eu/stratosphere/streaming/api/DataStream.java (ghermann 2014-08-18 13:57:13 +0000 109) *
a922473c0 flink-streaming-java/src/main/java/org/apache/flink/streaming/api/datastream/DataStream.java (Aljoscha Krettek 2016-02-29 20:37:19 +0000 110) * @param <T> The type of the elements in this stream.
5b05ca635 flink-addons/flink-streaming/stratosphere-streaming-core/src/main/java/eu/stratosphere/streaming/api/DataStream.java (ghermann 2014-08-18 13:57:13 +0000 111) */
112) @Public
b54499b1c flink-streaming-java/src/main/java/org/apache/flink/streaming/api/datastream/DataStream.java (Robert Metzger 2016-02-05 13:43:49 +0000 112) @Public
9cbd68a84 flink-addons/flink-streaming/flink-streaming-core/src/main/java/org/apache/flink/streaming/api/datastream/DataStream.java (gyfora 2014-09-20 11:42:04 +0000 113) public class DataStream<T> {
114)
5d401ff6e flink-addons/flink-streaming/stratosphere-streaming-core/src/main/java/eu/stratosphere/streaming/api/DataStream.java (mbalassi 2014-08-18 13:57:14 +0000 115) protected final StreamExecutionEnvironment environment;
Expand Down

0 comments on commit 2c9c3f0

Please sign in to comment.