Skip to content

Commit

Permalink
Update ExtendedSwaggerReader.java
Browse files Browse the repository at this point in the history
Fix wso2#536. See right work with javax.ws.rs.Path in line 690.
  • Loading branch information
inem88 authored Oct 9, 2018
1 parent 3fcd69e commit 0917501
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ private String getPath(javax.ws.rs.Path classLevelPath, javax.ws.rs.Path methodL
b.append(parentPath);
}
if (classLevelPath != null) {
b.append(classLevelPath);
b.append(classLevelPath.value());
}
if (methodLevelPath != null && !"/".equals(methodLevelPath.value())) {
String methodPath = methodLevelPath.value();
Expand Down

0 comments on commit 0917501

Please sign in to comment.