From 90af2d9f6e03fa7a24fdae5d772ad45344a3e044 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 17 Apr 2019 00:23:25 -0700 Subject: [PATCH] Fixed missing semicolon. --- version.mustache | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/version.mustache b/version.mustache index c984841..860bfe4 100644 --- a/version.mustache +++ b/version.mustache @@ -20,15 +20,7 @@ public final class {{className}} { public final static int PATCH = {{patch}}; public final static String PRERELEASE = "{{preRelease}}"; public final static String BUILDMETA = "{{buildMeta}}"; - - /** - * The full semantic version string. - */ - public final static String VERSION = Integer.toString(MAJOR) + '.' - + Integer.toString(MINOR) + '.' - + Integer.toString(PATCH) - + ((!PRERELEASE.isEmpty()) ? "-" + PRERELEASE : "") - + ((!BUILDMETA.isEmpty()) ? "+" + BUILDMETA : ""); + public final static String VERSION = "{{version}}"; /** * Disables the default constructor.