Tells whether or not ZAP is running from a dev build. @return true if it's a dev build, false otherwise. @see #isDevMode()
()
| 1687 | * @see #isDevMode() |
| 1688 | */ |
| 1689 | public static boolean isDevBuild() { |
| 1690 | return isDevBuild(PROGRAM_VERSION); |
| 1691 | } |
| 1692 | |
| 1693 | public static boolean isDevBuild(String version) { |
| 1694 | // Dev releases with be called "Dev Build" date stamped builds will be of the format |
no test coverage detected