()
| 747 | } |
| 748 | |
| 749 | public static String getBuildId() { |
| 750 | Attributes attributes = getManifestAttributes(); |
| 751 | if (attributes != null) { |
| 752 | return attributes.getValue("Implementation-Build"); |
| 753 | } else { |
| 754 | log.warn("Could not find manifest attributes."); |
| 755 | } |
| 756 | return null; |
| 757 | } |
| 758 | |
| 759 | public static String getBuildString() { |
| 760 | String result = null; |
nothing calls this directly
no test coverage detected