Skip to content

Commit dd0530a

Browse files
committed
tog i bort cache git för missar
1 parent 0c47d58 commit dd0530a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/org/example/CacheFilter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ public class CacheFilter {
77

88
public byte[] getOrFetch(String uri, FileProvider provider) throws IOException {
99
if (cache.contains(uri)) {
10-
System.out.println("Cache hit for: " + uri);
10+
System.out.println("Cache hit for: " + uri);
1111
return cache.get(uri);
1212
}
13-
System.out.println("✗ Cache miss for: " + uri);
1413
byte[] fileBytes = provider.fetch(uri);
1514
cache.put(uri, fileBytes);
1615
return fileBytes;

0 commit comments

Comments
 (0)