fix operation name (#1343)

This commit is contained in:
lican 2018-06-12 12:26:35 +08:00 committed by 吴晟 Wu Sheng
parent 337087410a
commit 6ad2f53ac0
1 changed files with 1 additions and 1 deletions

View File

@ -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("//","/"));
}
}