diff options
author | Andy Clement <aclement@gopivotal.com> | 2014-10-07 16:53:15 -0700 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2014-10-07 16:53:15 -0700 |
commit | 170b1cef3f6f2c4792eb4c07c76ab19bee9daca7 (patch) | |
tree | ccd23f10cc0424187e340310fccd508df07a332b | |
parent | 48eac479f6526b41a5960fd1574020d0eb645532 (diff) | |
download | aspectj-170b1cef3f6f2c4792eb4c07c76ab19bee9daca7.tar.gz aspectj-170b1cef3f6f2c4792eb4c07c76ab19bee9daca7.zip |
Fix for 445968: caching
-rw-r--r-- | weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java b/weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java index 7d6bb8c75..1580277b1 100644 --- a/weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java +++ b/weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java @@ -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()); } |