(String propertyName)
| 66 | } |
| 67 | |
| 68 | private String read(String propertyName) { |
| 69 | String value = BUILD_PROPERTIES.getProperty(propertyName); |
| 70 | if (value == null || value.trim().isEmpty()) { |
| 71 | return "unknown"; |
| 72 | } |
| 73 | return value.trim(); |
| 74 | } |
| 75 | } |
no test coverage detected