Skip to content

Commit 88dbf36

Browse files
committed
removed test code
1 parent 9db62de commit 88dbf36

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

modules/swagger-core/src/main/scala/com/wordnik/swagger/converter/ModelPropertyParser.scala

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,7 @@ class ModelPropertyParser(cls: Class[_]) (implicit properties: LinkedHashMap[Str
2525
final val positiveInfinity = "Infinity"
2626
final val negativeInfinity = "-Infinity"
2727

28-
def parse = {
29-
Option(cls).map(parseRecursive(_))
30-
31-
LOGGER.debug("processed fields: " + processedFields + ", " + properties.keys)
32-
}
28+
def parse = Option(cls).map(parseRecursive(_))
3329

3430
def parseRecursive(hostClass: Class[_]): Unit = {
3531
LOGGER.debug("processing class " + hostClass)

0 commit comments

Comments
 (0)