diff options
author | Bjarne Koll <[email protected]> | 2023-07-19 13:51:58 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-07-19 12:51:58 +0100 |
commit | 40adc2345be78daf264f2228941ec3b72742e6a5 (patch) | |
tree | 292a3b834d24f2d2b87a83373785834ab281f930 | |
parent | c793bd93be69918d26ff53764a1fee2254cc1618 (diff) | |
download | Paper-40adc2345be78daf264f2228941ec3b72742e6a5.tar.gz Paper-40adc2345be78daf264f2228941ec3b72742e6a5.zip |
[ci skip] Fix incorrect javadoc in JarLibrary (#9513)
-rw-r--r-- | patches/api/0008-Paper-Plugins.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/api/0008-Paper-Plugins.patch b/patches/api/0008-Paper-Plugins.patch index 98d549fe68..540b984ce9 100644 --- a/patches/api/0008-Paper-Plugins.patch +++ b/patches/api/0008-Paper-Plugins.patch @@ -703,7 +703,7 @@ index 0000000000000000000000000000000000000000..0546fa1e9dcd7155086a8650806a8c08 +} diff --git a/src/main/java/io/papermc/paper/plugin/loader/library/impl/JarLibrary.java b/src/main/java/io/papermc/paper/plugin/loader/library/impl/JarLibrary.java new file mode 100644 -index 0000000000000000000000000000000000000000..3327595d154700890c862a2ced5eff93da4bd634 +index 0000000000000000000000000000000000000000..e3da0d67cab01e1233dccde1a12ff25961ee79fb --- /dev/null +++ b/src/main/java/io/papermc/paper/plugin/loader/library/impl/JarLibrary.java @@ -0,0 +1,45 @@ @@ -728,7 +728,7 @@ index 0000000000000000000000000000000000000000..3327595d154700890c862a2ced5eff93 + * resulting in a jar library that provides the jar at {@code libs/custom-library-1.24.jar} to the plugins classloader + * at runtime. + * <p> -+ * The jar library implementation will error if file exists at the specified path. ++ * The jar library implementation will error if the file does not exist at the specified path. + */ +public class JarLibrary implements ClassPathLibrary { + |