File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -705,9 +705,6 @@ extension Swift2JavaTranslator {
705
705
_ printer: inout CodePrinter , _ decl: ImportedFunc ,
706
706
accessorKind: VariableAccessorKind ? = nil
707
707
) {
708
- // var thunkName = SwiftKitPrinting.Names.functionThunk(
709
- // thunkNameRegistry: &self.thunkNameRegistry,
710
- // module: self.swiftModuleName, function: decl)
711
708
let thunkName = thunkNameRegistry. functionThunkName ( module: self . swiftModuleName, decl: decl)
712
709
printer. print (
713
710
"""
@@ -899,9 +896,7 @@ extension Swift2JavaTranslator {
899
896
}
900
897
}
901
898
902
- public func renderJavaParamDecls( _ decl: ImportedFunc , paramPassingStyle: SelfParameterVariant ? )
903
- -> String
904
- {
899
+ public func renderJavaParamDecls( _ decl: ImportedFunc , paramPassingStyle: SelfParameterVariant ? ) -> String {
905
900
var ps : [ String ] = [ ]
906
901
var pCounter = 0
907
902
@@ -958,7 +953,6 @@ extension Swift2JavaTranslator {
958
953
959
954
if paramPassingStyle == . swiftThunkSelf {
960
955
ps. append ( " _self: UnsafeMutableRawPointer " )
961
- // ps.append("_self: Any")
962
956
}
963
957
964
958
let res = ps. joined ( separator: " , " )
You can’t perform that action at this time.
0 commit comments