We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9db62de commit 88dbf36Copy full SHA for 88dbf36
modules/swagger-core/src/main/scala/com/wordnik/swagger/converter/ModelPropertyParser.scala
@@ -25,11 +25,7 @@ class ModelPropertyParser(cls: Class[_]) (implicit properties: LinkedHashMap[Str
25
final val positiveInfinity = "Infinity"
26
final val negativeInfinity = "-Infinity"
27
28
- def parse = {
29
- Option(cls).map(parseRecursive(_))
30
-
31
-LOGGER.debug("processed fields: " + processedFields + ", " + properties.keys)
32
- }
+ def parse = Option(cls).map(parseRecursive(_))
33
34
def parseRecursive(hostClass: Class[_]): Unit = {
35
LOGGER.debug("processing class " + hostClass)
0 commit comments