continue;
}
//If everything is OK so far, we perform the weaving. we need three paramteres in order to
//class to perform weaving for that class, the class name,the class object and class bytes.
transferredClassBytes = classTransformer.transform(className.replace('.', '/'), thisClass, originalClassBytes);
//if transferredClassBytes is null means the class dose not get woven.
if(transferredClassBytes!=null){
swoh.addEntry(newEntry, transferredClassBytes);
} else{