Skip to content

Commit ee90fe3

Browse files
committed
0: Case fixes.
1 parent 53ae7f5 commit ee90fe3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Source/Dictionary.Java.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public extension Swift.Dictionary : java.util.Map<Key,Value> {
5757
public func forEach(_ arg1: java.util.function.BiConsumer</*? super Key,? super Value*/Key,Value>!) {
5858
dictionary.forEach(arg1)
5959
}
60-
public mutating func replaceAll(_ arg1: java.util.function.Bifunction</*? super Key,? super Value,? extends Value*/Key,Value>!) {
60+
public mutating func replaceAll(_ arg1: java.util.function.BiFunction</*? super Key,? super Value,? extends Value*/Key,Value>!) {
6161
makeUnique()
6262
dictionary.replaceAll(arg1)
6363
}
@@ -76,13 +76,13 @@ public extension Swift.Dictionary : java.util.Map<Key,Value> {
7676
public func computeIfAbsent(_ arg1: Key!, _ arg2: java.util.function.function</*? super Key,? extends Value*/Key,Value>!) -> Value! {
7777
return dictionary.computeIfAbsent(arg1, arg2)
7878
}
79-
public func computeIfPresent(_ arg1: Key!, _ arg2: java.util.function.Bifunction</*? super Key,? super Value,? extends Value*/Key,Value>!) -> Value! {
79+
public func computeIfPresent(_ arg1: Key!, _ arg2: java.util.function.BiFunction</*? super Key,? super Value,? extends Value*/Key,Value>!) -> Value! {
8080
return dictionary.computeIfPresent(arg1, arg2)
8181
}
82-
public func compute(_ arg1: Key!, _ arg2: java.util.function.Bifunction</*? super Key,? super Value,? extends Value*/Key,Value>!) -> Value! {
82+
public func compute(_ arg1: Key!, _ arg2: java.util.function.BiFunction</*? super Key,? super Value,? extends Value*/Key,Value>!) -> Value! {
8383
return dictionary.compute(arg1, arg2)
8484
}
85-
public mutating func merge(_ arg1: Key!, _ arg2: Value!, _ arg3: java.util.function.Bifunction</*? super Value,? super Value,? extends Value*/Key,Value>!) -> Value! {
85+
public mutating func merge(_ arg1: Key!, _ arg2: Value!, _ arg3: java.util.function.BiFunction</*? super Value,? super Value,? extends Value*/Key,Value>!) -> Value! {
8686
makeUnique()
8787
return dictionary.merge(arg1, arg2, arg3)
8888
}

0 commit comments

Comments
 (0)