Fix some documentation
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user