()
| 28 | private static DefaultVersion self; |
| 29 | |
| 30 | public static Version getSelf() { |
| 31 | if (self == null) { |
| 32 | synchronized (DefaultVersion.class) { |
| 33 | self = new DefaultVersion(); |
| 34 | } |
| 35 | } |
| 36 | return self; |
| 37 | } |
| 38 | |
| 39 | private DefaultVersion() { |
| 40 | setMajorVersion(1L); |
no outgoing calls
no test coverage detected