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 c0692df commit a94a5f6Copy full SHA for a94a5f6
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