FortUpdater.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* This program is free software: you can redistribute it and/or modify it under
  2. * the terms of the GNU General Public License as published by the Free Software
  3. * Foundation, either version 3 of the License, or (at your option) any later
  4. * version.
  5. *
  6. * This program is distributed in the hope that it will be useful, but WITHOUT
  7. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  8. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  9. * details.
  10. *
  11. * You should have received a copy of the GNU General Public License along with
  12. * this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. package net.sf.l2j.gameserver;
  15. import java.util.logging.Logger;
  16. import net.sf.l2j.gameserver.model.L2Clan;
  17. /**
  18. *
  19. * Vice - 2008
  20. * Class managing periodical events with castle
  21. *
  22. */
  23. public class FortUpdater implements Runnable
  24. {
  25. protected static Logger _log = Logger.getLogger(FortUpdater.class.getName());
  26. @SuppressWarnings("unused")
  27. private L2Clan _clan;
  28. @SuppressWarnings("unused")
  29. private int _runCount = 0;
  30. public FortUpdater(L2Clan clan, int runCount)
  31. {
  32. _clan = clan;
  33. _runCount = runCount;
  34. }
  35. public void run()
  36. {
  37. try
  38. {
  39. } catch (Throwable e) {
  40. e.printStackTrace();
  41. }
  42. }
  43. }