Commit 6ad2f53a authored by lican's avatar lican Committed by 吴晟
Browse files

fix operation name (#1343)

parent 33708741
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,6 +53,6 @@ public class PathMappingCache {
                && !classPath.endsWith(PATH_SEPARATOR)) {
            methodPath = PATH_SEPARATOR + methodPath;
        }
        methodPathMapping.put(method, classPath + methodPath);
        methodPathMapping.put(method, (classPath + methodPath).replace("//","/"));
    }
}