Skip to content

Commit 8496f1a

Browse files
committed
Address code review comments
1 parent c575f00 commit 8496f1a

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.licenseignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
.swift-format
66
.github/*
77
*.md
8+
**/*.config
89
CONTRIBUTORS.txt
910
LICENSE.txt
1011
NOTICE.txt

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ let package = Package(
5858

5959
.library(
6060
name: "JavaRuntime",
61-
targets: [ "JavaRuntime"]
61+
targets: ["JavaRuntime"]
6262
),
6363

6464
.library(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"classes" : {
3-
"java.util.Vector" : null
3+
"java.util.ArrayList" : "ArrayList"
44
}
55
}

Samples/JavaKitSampleApp/Sources/JavaKitExample/JavaKitExample.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,6 @@ struct HelloSubclass {
119119
}
120120

121121

122-
func returnNilVector() -> Vector<JavaClass<HelloSwift>>? {
122+
func returnNilVector() -> ArrayList<JavaClass<HelloSwift>>? {
123123
nil
124124
}

0 commit comments

Comments
 (0)