Skip to content

Commit

Permalink
fix(cli): limit cache size of paths
Browse files Browse the repository at this point in the history
  • Loading branch information
thetric committed May 11, 2017
1 parent a9c42e6 commit c80e00d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ final class SyncHandlerImpl implements SyncHandler {
return parentItemPath.resolve(sanitizeFileName(iliasItem.name))
}

@Memoized
@Memoized(maxCacheSize = 5)
private Path resolvePathOfParent(IliasItem parentItem) {
if (!parentItem) {
return basePath
Expand Down

0 comments on commit c80e00d

Please sign in to comment.