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

indexEntry.key = classEntry.getKey(); indexEntry.key = classEntry.getKey();
indexEntry.generated = classEntry.isGenerated(); indexEntry.generated = classEntry.isGenerated();
indexEntry.ignored = classEntry.isIgnored(); indexEntry.ignored = classEntry.isIgnored();
indexEntry.crcClass = crc(originalBytes);
if (!classEntry.isIgnored()) { if (!classEntry.isIgnored()) {
indexEntry.crcClass = crc(originalBytes);
indexEntry.crcWeaved = crc(classEntry.getBytes()); indexEntry.crcWeaved = crc(classEntry.getBytes());
} }



Loading…
Cancel
Save