/ instead of File.separatorChar

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@125 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent f6995fee90
commit f712ecf8bd
  1. 2
      jode/jode/type/Type.java

@ -163,7 +163,7 @@ public class Type {
}
public static final Type tClass(String clazzname) {
clazzname = clazzname.replace(java.io.File.separatorChar, '.');
clazzname = clazzname.replace('/', '.');
Object result = classHash.get(clazzname);
if (result == null) {
try {

Loading…
Cancel
Save