-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleans up some groovydoc formatter code
- Loading branch information
1 parent
fe475d1
commit 004697a
Showing
10 changed files
with
98 additions
and
153 deletions.
There are no files selected for viewing
29 changes: 0 additions & 29 deletions
29
...c/groovydoc-formatter/src/main/kotlin/com/copperleaf/groovydoc/json/GroovydocFormatter.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 0 additions & 25 deletions
25
...oc-formatter/src/main/kotlin/com/copperleaf/groovydoc/json/GroovydocJsonTemplateEngine.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 0 additions & 64 deletions
64
.../groovydoc-formatter/src/main/kotlin/com/copperleaf/groovydoc/json/GroovydocJsonWriter.kt
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
groovydoc/groovydoc-formatter/src/main/kotlin/com/copperleaf/groovydoc/json/constants.kt
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
...roovydoc-formatter/src/main/kotlin/com/copperleaf/groovydoc/json/formatter/formatClass.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.copperleaf.groovydoc.json.formatter | ||
|
||
import com.copperleaf.groovydoc.json.models.GroovydocClassDoc | ||
import org.codehaus.groovy.groovydoc.GroovyClassDoc | ||
|
||
fun GroovyClassDoc.toClassDoc(): GroovydocClassDoc { | ||
return GroovydocClassDoc( | ||
this, | ||
this.name() | ||
) | ||
} |
11 changes: 11 additions & 0 deletions
11
...ovydoc-formatter/src/main/kotlin/com/copperleaf/groovydoc/json/formatter/formatPackage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.copperleaf.groovydoc.json.formatter | ||
|
||
import com.copperleaf.groovydoc.json.models.GroovydocPackageDoc | ||
import org.codehaus.groovy.groovydoc.GroovyPackageDoc | ||
|
||
fun GroovyPackageDoc.toPackageDoc(): GroovydocPackageDoc { | ||
return GroovydocPackageDoc( | ||
this, | ||
this.name() | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters