Skip to content

Commit 89cbf36

Browse files
committed
Comment
1 parent 61e5bef commit 89cbf36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examplepluginloader/bin/main/examplepluginloader/Plugger/PluginManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ object PluginManager {
4545
else name.get(0)
4646
}catch(e: Exception){null}
4747
fun getPluginLocation(plugID: UUID): URL? = try{
48-
//only ever 1 url per uuid. 2 uuids for 1 url is possible but not relevant,
48+
//only ever 1 url per uuid. 2 uuids for 1 url is possible but not relevant here,
4949
//get(0) will throw error if UUID not found because list will be empty
5050
classInfoByURLs.filter { it.value.classInfoAtURL
5151
?.any { it.optUUID == plugID } ?: false

examplepluginloader/src/main/kotlin/examplepluginloader/Plugger/PluginManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ object PluginManager {
4545
else name.get(0)
4646
}catch(e: Exception){null}
4747
fun getPluginLocation(plugID: UUID): URL? = try{
48-
//only ever 1 url per uuid. 2 uuids for 1 url is possible but not relevant,
48+
//only ever 1 url per uuid. 2 uuids for 1 url is possible but not relevant here,
4949
//get(0) will throw error if UUID not found because list will be empty
5050
classInfoByURLs.filter { it.value.classInfoAtURL
5151
?.any { it.optUUID == plugID } ?: false

0 commit comments

Comments
 (0)