diff options
author | Jose Luis Marti <joseluis.marti@gmail.com> | 2022-10-23 23:54:58 +0200 |
---|---|---|
committer | Jose Luis Marti <joseluis.marti@gmail.com> | 2022-10-23 23:54:58 +0200 |
commit | 8178f46f2f692bd57d5fe851e16b1b377bb4867b (patch) | |
tree | f23bf1bc7e3fac8db3441587444e71c0ee12bc1b /tools/codegenerator | |
parent | b99c39bee1c12d4471959c4854927a60f5dc4393 (diff) |
add imports needed for the bump
Diffstat (limited to 'tools/codegenerator')
-rw-r--r-- | tools/codegenerator/Generator.groovy | 1 | ||||
-rw-r--r-- | tools/codegenerator/Helper.groovy | 1 | ||||
-rw-r--r-- | tools/codegenerator/SwigTypeParser.groovy | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/tools/codegenerator/Generator.groovy b/tools/codegenerator/Generator.groovy index 53cf7864f9..79cfe4f5fb 100644 --- a/tools/codegenerator/Generator.groovy +++ b/tools/codegenerator/Generator.groovy @@ -19,6 +19,7 @@ */ import groovy.text.SimpleTemplateEngine +import groovy.xml.XmlParser import groovy.xml.XmlUtil import Helper diff --git a/tools/codegenerator/Helper.groovy b/tools/codegenerator/Helper.groovy index 6324e537e1..4308ffd3f3 100644 --- a/tools/codegenerator/Helper.groovy +++ b/tools/codegenerator/Helper.groovy @@ -18,6 +18,7 @@ * */ +import groovy.xml.XmlParser import groovy.xml.XmlUtil import org.apache.commons.lang.StringEscapeUtils diff --git a/tools/codegenerator/SwigTypeParser.groovy b/tools/codegenerator/SwigTypeParser.groovy index ab4e5292f9..24dfa8f8ab 100644 --- a/tools/codegenerator/SwigTypeParser.groovy +++ b/tools/codegenerator/SwigTypeParser.groovy @@ -18,6 +18,8 @@ * */ +import groovy.xml.XmlParser + /** * These methods are somewhat ugly because they have been copied out of * the Swig source code and simply made compilable with groovy. They could |