Procházet zdrojové kódy

Fix for 445968: caching

tags/V1_8_3
Andy Clement před 9 roky
rodič
revize
170b1cef3f

+ 1
- 1
weaver/src/org/aspectj/weaver/tools/cache/AbstractIndexedFileCacheBacking.java Zobrazit soubor

@@ -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());
}


Načítá se…
Zrušit
Uložit