Browse Source

Fix for 445968: caching

tags/V1_8_3
Andy Clement 9 years ago
parent
commit
170b1cef3f

+ 1
- 1
weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java View 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());
}


Loading…
Cancel
Save