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 acff3ee commit 4fb6ca2Copy full SHA for 4fb6ca2
Samples/SwiftJavaExtractJNISampleApp/Sources/MySwiftLibrary/ConcreteProtocolAB.swift
@@ -17,16 +17,16 @@ public class ConcreteProtocolAB: ProtocolA, ProtocolB {
17
public let constantB: Int64
18
public var mutable: Int64 = 0
19
20
+ public init(constantA: Int64, constantB: Int64) {
21
+ self.constantA = constantA
22
+ self.constantB = constantB
23
+ }
24
+
25
public func name() -> String {
26
return "ConcreteProtocolAB"
27
}
28
29
public func makeClass() -> MySwiftClass {
30
return MySwiftClass(x: 10, y: 50)
31
-
- public init(constantA: Int64, constantB: Int64) {
- self.constantA = constantA
- self.constantB = constantB
- }
32
0 commit comments