File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/kotlin/io/openapiprocessor/spring Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ class QueryParameter(
3434 return true
3535 }
3636
37- // Pojo's should NOT be annotated
37+ // POJOs should NOT be annotated
3838 if (dataType is ObjectDataType ) {
3939 return false
4040 }
4141
42- // Mapped should NOT be annotated if it was object schema
42+ // Mapped should NOT be annotated if it was an object schema
4343 // Mapped should be annotated if it was a simple schema
4444 if (isMappedObject) {
4545 return false
@@ -58,7 +58,7 @@ class QueryParameter(
5858 return false
5959 }
6060
61- // Pojo should not have parameters
61+ // POJO should not have parameters
6262 if (dataType is ObjectDataType ) {
6363 return false
6464 }
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import io.openapiprocessor.core.writer.java.ParameterAnnotationWriter as CorePar
1212import java.io.Writer
1313
1414/* *
15- * spring parameter annotation writer
15+ * Spring parameter annotation writer
1616 */
1717class ParameterAnnotationWriter (private val annotations : FrameworkAnnotations )
1818 : CoreParameterAnnotationWriter {
You can’t perform that action at this time.
0 commit comments