()
| 34 | private static GUILog instance; |
| 35 | private Object thread_lock; |
| 36 | public static GUILog getInstance() { |
| 37 | if (instance == null) { |
| 38 | |
| 39 | instance = new GUILog(); |
| 40 | } |
| 41 | return instance; |
| 42 | } |
| 43 | |
| 44 | public GUILog() { |
| 45 | text = new JTextPane(); |
no outgoing calls
no test coverage detected