Fix some documentation

This commit is contained in:
2020-07-20 22:26:32 +02:00
parent 60f59ae503
commit 3d67a79eeb
3 changed files with 5 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ public interface ContentPack {
/** /**
* Gets the resource with the specified identifier. * Gets the resource with the specified identifier.
* @param identifier * @param identifier The resource identifier
* @return The resource or <code>null</code> if it doesn't exist * @return The resource or <code>null</code> if it doesn't exist
*/ */
@Nullable @Nullable

View File

@@ -61,8 +61,8 @@ public class Quest {
} }
/** /**
* Represents the type of a quest. <br /> * Represents the type of a quest. <br>
* <code>IN</code> for incoming (store) <br /> * <code>IN</code> for incoming (store) <br>
* <code>OUT</code> for outgoing (deliver) * <code>OUT</code> for outgoing (deliver)
*/ */
public enum Type { public enum Type {

View File

@@ -7,8 +7,8 @@ import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
/** /**
* An input stream that can be reused. <br /> * An input stream that can be reused. <br>
* Close with {@link PersistentInputStream#realClose()} <br /> * Close with {@link PersistentInputStream#realClose()} <br>
* <b>Taken from here: https://stackoverflow.com/questions/924990/how-to-cache-inputstream-for-multiple-use#1303314</b> * <b>Taken from here: https://stackoverflow.com/questions/924990/how-to-cache-inputstream-for-multiple-use#1303314</b>
*/ */
public class PersistentInputStream extends BufferedInputStream { public class PersistentInputStream extends BufferedInputStream {