diff --git a/source/java/org/alfresco/repo/cache/TransactionalCache.java b/source/java/org/alfresco/repo/cache/TransactionalCache.java index cd99cbe852..8425980e14 100644 --- a/source/java/org/alfresco/repo/cache/TransactionalCache.java +++ b/source/java/org/alfresco/repo/cache/TransactionalCache.java @@ -685,7 +685,7 @@ public class TransactionalCache * * @author Derek Hulley */ - private class NewCacheBucket implements CacheBucket + private static class NewCacheBucket implements CacheBucket { private static final long serialVersionUID = -8536386687213957425L; @@ -719,7 +719,7 @@ public class TransactionalCache * shared cache values. This bucket assumes the presence of a pre-existing entry in * the shared cache. */ - private class UpdateCacheBucket extends NewCacheBucket + private static class UpdateCacheBucket extends NewCacheBucket { private static final long serialVersionUID = 7885689778259779578L; @@ -760,7 +760,7 @@ public class TransactionalCache * Data holder to keep track of cache removals. This bucket assumes the previous existence * of an entry in the shared cache. */ - private class RemoveCacheBucket extends UpdateCacheBucket + private static class RemoveCacheBucket extends UpdateCacheBucket { private static final long serialVersionUID = -7736719065158540252L;