File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
modules/swagger-codegen/src/main/java/io/swagger/codegen/languages Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -52,4 +52,16 @@ public void processSwagger(Swagger swagger) {
52
52
LOGGER .error (e .getMessage (), e );
53
53
}
54
54
}
55
+
56
+ @ Override
57
+ public String escapeQuotationMark (String input ) {
58
+ // just return the original string
59
+ return input ;
60
+ }
61
+
62
+ @ Override
63
+ public String escapeUnsafeCharacters (String input ) {
64
+ // just return the original string
65
+ return input ;
66
+ }
55
67
}
Original file line number Diff line number Diff line change @@ -61,4 +61,17 @@ public void processSwagger(Swagger swagger) {
61
61
LOGGER .error (e .getMessage (), e );
62
62
}
63
63
}
64
+
65
+ @ Override
66
+ public String escapeQuotationMark (String input ) {
67
+ // just return the original string
68
+ return input ;
69
+ }
70
+
71
+ @ Override
72
+ public String escapeUnsafeCharacters (String input ) {
73
+ // just return the original string
74
+ return input ;
75
+ }
76
+
64
77
}
You can’t perform that action at this time.
0 commit comments