Skip to content

Commit 2869036

Browse files
committed
removed useless print.
1 parent 8a2e46f commit 2869036

File tree

1 file changed

+1
-4
lines changed
  • modules/swagger-codegen/src/main/java/io/swagger/codegen/v3/utils

1 file changed

+1
-4
lines changed

modules/swagger-codegen/src/main/java/io/swagger/codegen/v3/utils/URLPathUtil.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,7 @@ public static URL getServerURL(OpenAPI openAPI, CodegenConfig config) {
6565
serverUrl = inputURL;
6666
break;
6767
}
68-
URL url = new URL(serverUrl);
69-
System.out.println(url.toString());
70-
71-
return url;
68+
return new URL(serverUrl);
7269
} catch (Exception e) {
7370
LOGGER.warn("Not valid URL: " + server.getUrl(), e);
7471
return null;

0 commit comments

Comments
 (0)