Skip to content

Commit

Permalink
Merge pull request #11 from n-lagomarsini/concurrentmap
Browse files Browse the repository at this point in the history
[JAIEXT-24] Fix bug on the ConcurrentTileCache with multimap
  • Loading branch information
n-lagomarsini committed Jun 10, 2014
2 parents 68f981a + 33511da commit 81eebc7
Show file tree
Hide file tree
Showing 12 changed files with 504 additions and 1,622 deletions.
16 changes: 0 additions & 16 deletions concurrent-tile-cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,10 @@
<artifactId>gt-coverage</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>com.boundary</groupId>
<artifactId>high-scale-lib</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>boundary-site</id>
<url>http://maven.boundary.com/artifactory/repo</url>
</repository>
</repositories>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,6 @@ public int weigh(Object o, CachedTileImpl cti) {
return (int) cti.getTileSize();
}
});
if (diagnosticEnabled) {
builder.removalListener(listener).recordStats();
}

return builder.build();

Expand Down
Loading

0 comments on commit 81eebc7

Please sign in to comment.