Skip to content

Commit a65f1b8

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Dictionary.Java.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public extension Swift.Dictionary : java.util.Map<Key,Value> {
7373
makeUnique()
7474
return dictionary.replace(arg1, arg2, arg3)
7575
}
76-
public func computeIfAbsent(_ arg1: Key!, _ arg2: java.util.function.function</*? super Key,? extends Value*/Key,Value>!) -> Value! {
76+
public func computeIfAbsent(_ arg1: Key!, _ arg2: java.util.function.Function</*? super Key,? extends Value*/Key,Value>!) -> Value! {
7777
return dictionary.computeIfAbsent(arg1, arg2)
7878
}
7979
public func computeIfPresent(_ arg1: Key!, _ arg2: java.util.function.BiFunction</*? super Key,? super Value,? extends Value*/Key,Value>!) -> Value! {

0 commit comments

Comments
 (0)