]> source.dussan.org Git - aspectj.git/commitdiff
Fix for 445968: caching
authorAndy Clement <aclement@gopivotal.com>
Tue, 7 Oct 2014 23:53:15 +0000 (16:53 -0700)
committerAndy Clement <aclement@gopivotal.com>
Tue, 7 Oct 2014 23:53:15 +0000 (16:53 -0700)
weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java

index 7d6bb8c75090376b44d164fe6a1fa3f6a668cfc3..1580277b1d9cce2522c4ea7eee660ec5b122bc6d 100644 (file)
@@ -186,8 +186,8 @@ public abstract class AbstractIndexedFileCacheBacking extends AbstractFileCacheB
         indexEntry.key = classEntry.getKey();
         indexEntry.generated = classEntry.isGenerated();
         indexEntry.ignored = classEntry.isIgnored();
+       indexEntry.crcClass = crc(originalBytes);
         if (!classEntry.isIgnored()) {
-               indexEntry.crcClass = crc(originalBytes);
             indexEntry.crcWeaved = crc(classEntry.getBytes());
         }