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 a2b3db9 commit d62a012Copy full SHA for d62a012
Plugins/Java2SwiftPlugin/Java2SwiftPlugin.swift
@@ -90,7 +90,8 @@ struct Java2SwiftBuildToolPlugin: BuildToolPlugin {
90
/// Determine the set of Swift files that will be emitted by the Java2Swift
91
/// tool.
92
let outputSwiftFiles = config.classes.map { (javaClassName, swiftName) in
93
- outputDirectory.appending(path: "\(swiftName).swift")
+ let swiftNestedName = swiftName.replacingOccurrences(of: ".", with: "+")
94
+ return outputDirectory.appending(path: "\(swiftNestedName).swift")
95
}
96
97
// Find the Java .class files generated from prior plugins.
0 commit comments