diff options
Diffstat (limited to 'poi-ooxml-lite/build.gradle')
-rw-r--r-- | poi-ooxml-lite/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-ooxml-lite/build.gradle b/poi-ooxml-lite/build.gradle index 0cf4ab8214..a26f63e347 100644 --- a/poi-ooxml-lite/build.gradle +++ b/poi-ooxml-lite/build.gradle @@ -63,7 +63,7 @@ task generateModuleInfo() { collect { " exports ${it.replaceAll('[/\\\\][^/\\\\]+$', '').replaceAll('[/\\\\]', '.')};" }. findAll { !(it =~ /\.impl;$/) }.unique().sort().join('\n') - String content = header + '\n' + exports + '\n}\n' + String content = header + '\n' + exports + '\n}' if (fileOut.text != content) { fileOut.write content } |