Singleton constructor
()
| 173 | |
| 174 | /** Singleton constructor */ |
| 175 | static public Language init() { |
| 176 | if (instance == null) { |
| 177 | synchronized (Language.class) { |
| 178 | if (instance == null) { |
| 179 | instance = new Language(); |
| 180 | } |
| 181 | } |
| 182 | } |
| 183 | return instance; |
| 184 | } |
| 185 | |
| 186 | |
| 187 | static private String get(String key) { |
no outgoing calls
no test coverage detected