mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
Fixed generics warning.
By: Lymia <lymiahugs@gmail.com>
This commit is contained in:
parent
51005cf1be
commit
4937cffabb
1 changed files with 3 additions and 1 deletions
|
@ -17,6 +17,7 @@ public final class PluginDescriptionFile {
|
|||
private String name = null;
|
||||
private String main = null;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public PluginDescriptionFile(final InputStream stream) throws InvalidDescriptionException {
|
||||
try {
|
||||
loadMap((Map<String, Object>)yaml.load(stream));
|
||||
|
@ -29,10 +30,11 @@ public final class PluginDescriptionFile {
|
|||
* Loads a PluginDescriptionFile from the specified reader
|
||||
* @param reader
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public PluginDescriptionFile(final Reader reader) {
|
||||
loadMap((Map<String, Object>)yaml.load(reader));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Creates a new PluginDescriptionFile with the given detailed
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue