Skip to content

Commit 295a0c8

Browse files
authored
Kotlin 1.9.10, FLK 1.10.10, update other versions (#79)
1 parent c57a2bf commit 295a0c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+79
-78
lines changed

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ org.gradle.parallel=true
55
kotlin.incremental=true
66
kotlin.code.style=official
77

8-
version=2.1.2
9-
flkVersion=1.10.8
8+
version=2.1.3
9+
flkVersion=1.10.10

gradle/libs.versions.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
2-
atomic = "0.21.0"
3-
coroutines = "1.7.2"
4-
datetime = "0.4.0"
5-
dokka = "1.8.20"
6-
kotlin = "1.9.0"
2+
atomic = "0.22.0"
3+
coroutines = "1.7.3"
4+
datetime = "0.4.1"
5+
dokka = "1.9.0"
6+
kotlin = "1.9.10"
77
minecraft = "1.20.1"
8-
qsl = "6.0.4+1.20.1"
9-
quilt_loader = "0.19.2"
10-
quilt_mappings = "1.20.1+build.21"
11-
serialization = "1.5.1"
12-
serialization_plugin = "1.9.0" # usually same as kotlin but can lag behind
8+
qsl = "6.1.1+1.20.1"
9+
quilt_loader = "0.20.2"
10+
quilt_mappings = "1.20.1+build.23"
11+
serialization = "1.6.0"
12+
serialization_plugin = "1.9.10" # usually same as kotlin but can lag behind
1313
binary_compat_plugin = "0.13.2"
1414

1515
[libraries]
@@ -28,13 +28,13 @@ serialization_core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-cor
2828
serialization_json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm", version.ref = "serialization" }
2929

3030
[plugins]
31-
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.0" }
31+
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.1" }
3232
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
3333
git_hooks = { id = "com.github.jakemarsden.git-hooks", version = "0.0.2" }
3434
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
3535
licenser = { id = "org.quiltmc.gradle.licenser", version = "2.0.1" }
3636
quilt_loom = { id = "org.quiltmc.loom", version = "1.+" }
3737
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "serialization_plugin" }
3838
binary_compatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "binary_compat_plugin" }
39-
minotaur = { id = "com.modrinth.minotaur", version = "2.8.1" }
39+
minotaur = { id = "com.modrinth.minotaur", version = "2.8.2" }
4040
cursegradle = { id = "com.matthewprenger.cursegradle", version = "1.4.0" }

gradle/wrapper/gradle-wrapper.jar

346 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
3+
distributionSha256Sum=591855b517fc635b9e04de1d05d5e76ada3f89f5fc76f87978d1b245b4f69225
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ done
8383
# This is normally unused
8484
# shellcheck disable=SC2034
8585
APP_BASE_NAME=${0##*/}
86-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
8788

8889
# Use the maximum available, or set MAX_FD != -1 to use that value.
8990
MAX_FD=maximum

library/src/main/kotlin/org/quiltmc/qkl/library/EventRegistration.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/MixinAccessors.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentConstructor.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentReader.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/CommandExecution.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/BlockArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/EnumArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/GeometricArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/IdentifierArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/ItemArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/NBTArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PlayerArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PrimitiveArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/RangeArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/StringArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/TestingArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/util/RequiredChain.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/crash/CrashEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/lifecycle/ServerEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/nbt/CompoundOperators.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtConversions.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtDelegates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/nbt/NbtListDelegates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/networking/PlayerLookups.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/recipe/RecipeEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/registry/RegistryDelegation.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/CodecFactory.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/ExtendedDynamicOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecEntryListMap.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/annotation/CodecSerializable.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializationException.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/CodecSerializerAdapter.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/DefaultExtendedOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/ExtendedJsonOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/SerializationState.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/BasicStates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/ClassStates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/CollectionStates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DecoderState.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/decoder/DynamicDecoder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/BasicStates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/ClassStates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/CollectionStates.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/DynamicEncoder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/encoder/EncoderState.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/AnnotationUtil.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/serialization/internal/util/DataUtil.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 The Quilt Project
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)