We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61fea61 commit ae8062cCopy full SHA for ae8062c
api/src/main/java/org/geysermc/geyser/api/pack/PackCodec.java
@@ -98,7 +98,7 @@ public SeekableByteChannel serialize(@NonNull ResourcePack resourcePack) throws
98
* @since 2.1.1
99
*/
100
@NonNull
101
- public static PathPackCodec path(@NonNull Path path) {
+ public static PackCodec path(@NonNull Path path) {
102
return GeyserApi.api().provider(PathPackCodec.class, path);
103
}
104
@@ -110,7 +110,7 @@ public static PathPackCodec path(@NonNull Path path) {
110
* @since 2.6.2
111
112
113
- public static UrlPackCodec url(@NonNull String url) {
+ public static PackCodec url(@NonNull String url) {
114
return GeyserApi.api().provider(UrlPackCodec.class, url);
115
116
0 commit comments