Code convention cleanup of right braces.

This commit is contained in:
sk89q
2014-04-04 14:26:08 -07:00
parent 60f0c06971
commit 2b0ee84952
3 changed files with 24 additions and 22 deletions

View File

@ -1,9 +1,9 @@
package com.sk89q.jnbt;
import java.util.Map;
import com.sk89q.worldedit.world.storage.InvalidFormatException;
import java.util.Map;
/*
* JNBT License
*
@ -181,7 +181,7 @@ public final class NBTUtils {
* @throws InvalidFormatException
*/
public static <T extends Tag> T getChildTag(Map<String,Tag> items, String key,
Class<T> expected) throws InvalidFormatException {
Class<T> expected) throws InvalidFormatException {
if (!items.containsKey(key)) {
throw new InvalidFormatException("Missing a \"" + key + "\" tag");
}