Skip to content

Commit

Permalink
Remove space from cache name
Browse files Browse the repository at this point in the history
  • Loading branch information
tdrwenski authored and haileyajohnson committed Sep 28, 2022
1 parent 44dac53 commit 2106e48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static synchronized void initNetcdfFileCache(int minElementsInMemory, int
*/
public static synchronized void initNetcdfFileCache(int minElementsInMemory, int maxElementsInMemory, int hardLimit,
int period) {
netcdfFileCache = new FileCache("NetcdfFileCache ", minElementsInMemory, maxElementsInMemory, hardLimit, period);
netcdfFileCache = new FileCache("NetcdfFileCache", minElementsInMemory, maxElementsInMemory, hardLimit, period);
}

public static synchronized void disableNetcdfFileCache() {
Expand Down

0 comments on commit 2106e48

Please sign in to comment.