1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-05 23:22:47 +00:00

Fix small compiler warnings

This commit fix small compiler warnings in a few Java classes
This commit is contained in:
2011-10-11 23:54:49 -03:00
parent 6a40656a38
commit 1e94a5ccaa
4 changed files with 27 additions and 28 deletions

View File

@@ -4,7 +4,6 @@ import java.io.File;
import java.io.IOException;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.SchemaOutputResolver;
import javax.xml.transform.Result;
import javax.xml.transform.stream.StreamResult;
@@ -18,10 +17,11 @@ import com.l2jserver.service.game.template.XMLTemplateService.TeleportationTempl
public class TemplateSchemaGeneratorMain {
/**
* @param args
* @throws JAXBException
* @throws IOException
* none
* @throws Exception
* any exception
*/
public static void main(String[] args) throws JAXBException, IOException {
public static void main(String[] args) throws Exception {
final File baseDir = new File("generated/schemas");
JAXBContext context = JAXBContext.newInstance(CharacterTemplate.class,