in tomee-patch-core/src/main/java/org/apache/tomee/patch/core/Clazz.java [29:34]
public Clazz(final String name, final File file) {
this.name = name.replace("\\", "/");
this.prefix = this.name.replaceAll("\\.class$", "");
this.packge = asPackage(this.name);
this.file = file;
}