Skip to content

Commit dee2f45

Browse files
committed
Remove @implNote for javadoc compatibility
1 parent 5af4d4d commit dee2f45

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/pascal/taie/analysis/pta/core/cs/CSCallGraph.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public Stream<Edge<CSCallSite, CSMethod>> edges() {
133133
}
134134

135135
/**
136-
* @implNote This implementation may be inefficient, please use with care
136+
* <strong>Note:</strong> This implementation may be inefficient, please use with care
137137
*/
138138
@Override
139139
public int getNumberOfEdges() {

src/main/java/pascal/taie/analysis/sideeffect/CachedCallGraph.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@
3737
* Query operations on the returned callgraph "read through" to the underlying callgraph,
3838
* and the results are cached.
3939
*
40-
* @implNote This class is not thread-safe
40+
* <p>
41+
* <strong>Note:</strong> This class is not thread-safe
42+
* </p>
4143
*/
4244
class CachedCallGraph<CallSite, Method> implements CallGraph<CallSite, Method> {
4345

0 commit comments

Comments
 (0)