12345678910111213141516171819202122232425262728293031323334 |
- package net.sf.l2j;
- import java.io.IOException;
- import java.util.logging.FileHandler;
- public class ItemLogHandler extends FileHandler
- {
- public ItemLogHandler() throws IOException, SecurityException
- {
- super();
- }
- }
|