Skip to content

Commit

Permalink
One FIXME is enough for the caching situation
Browse files Browse the repository at this point in the history
  • Loading branch information
hugithordarson committed Jul 15, 2023
1 parent 1f514e3 commit a65ce38
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions ng-appserver/src/main/java/ng/appserver/NGResourceManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,10 @@ public class NGResourceManager {
private static final Logger logger = LoggerFactory.getLogger( NGResourceManager.class );

/**
* FIXME: Experimental cache. Resource caches should be located centrally.
* FIXME: Experimental caches. Resource caches should be located centrally.
*/
private final Map<String, Optional<byte[]>> _webserverResourceCache = new ConcurrentHashMap<>();

/**
* FIXME: Experimental cache. Resource caches should be located centrally.
*/
private final Map<String, Optional<byte[]>> _publicResourceCache = new ConcurrentHashMap<>();

/**
* FIXME: Experimental cache. Resource caches should be located centrally.
*/
private final Map<String, Optional<byte[]>> _appResourceCache = new ConcurrentHashMap<>();

/**
Expand Down

0 comments on commit a65ce38

Please sign in to comment.