about summary refs log tree commit diff stats
path: root/data/maps/the_revitalized/rooms/Hide Room.txtpb
blob: 6660787037f79e19702b8dcf6173d70dbad3fe45 (plain) (blame)
1
2
3
4
5
6
7
8
9
name: "Hide Room"
display_name: "Revitalized"
panels {
  name: "HIDE"
  path: "Panels/panel_2"
  clue: "hide"
  answer: "hi"
  symbols: SPARKLES
}
ght .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.fourisland.instadisc;

import java.io.IOException;
import java.net.ServerSocket;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 *
 * @author hatkirby
 */
class CloseServerSocketThread implements Runnable {
    
    ServerSocket svr;

    public CloseServerSocketThread(ServerSocket svr) {
        this.svr = svr;
    }

    public void run() {
        try {
            svr.close();
        } catch (IOException ex) {
            Logger.getLogger(CloseServerSocketThread.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

}