sLog.fine("Not following method calls");
}
} else if (line instanceof PutfieldInstruction) {
if (showPutFieldInstructions) {
sLog.fine("PutfieldInstruction - " + line.toString());
PutfieldInstruction putFieldInstruction = (PutfieldInstruction) line;
final String invokedClassName = putFieldInstruction
.getInvokedClass();
// Check if this is a class of interest.
if (filters != null) {
if (!checkPackageMatch(filters, invokedClassName)) {