Skip to content

Commit

Permalink
Code: Add TODO comments. [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
smarkwal committed Sep 20, 2024
1 parent f309339 commit 6b12f2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ private boolean matches(JarFile jarFile, Dependency dependency) {
}

private String getCoordinates(JarFile jarFile) {
// TODO: return "[timeout]" if Maven Search API request timed out
String coordinates = jarFile.getCoordinates();
if (coordinates == null) {
return UNKNOWN;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ private String getChecksumInfo(JarFile jarFile) {
}

private String getCoordinates(JarFile jarFile) {
// TODO: return "[timeout]" if Maven Search API request timed out
String coordinates = jarFile.getCoordinates();
if (coordinates == null || coordinates.isEmpty()) {
return UNKNOWN;
Expand Down

0 comments on commit 6b12f2e

Please sign in to comment.