Singleton constructor
()
| 159 | |
| 160 | /** Singleton constructor */ |
| 161 | static public Language init() { |
| 162 | if (instance == null) { |
| 163 | synchronized (Language.class) { |
| 164 | if (instance == null) { |
| 165 | instance = new Language(); |
| 166 | } |
| 167 | } |
| 168 | } |
| 169 | return instance; |
| 170 | } |
| 171 | |
| 172 | |
| 173 | static private String get(String key) { |
no outgoing calls
no test coverage detected