From 23caf67c58fb5e6ecbe50eb1a24b02ef40585629 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Mon, 3 Jul 2023 21:01:19 +0000 Subject: remove release date from version.java git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1910760 13f79535-47bb-0310-9956-ffa450edef68 --- poi/src/main/version/Version.java.template | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'poi') diff --git a/poi/src/main/version/Version.java.template b/poi/src/main/version/Version.java.template index 716ec916bf..908964f84a 100644 --- a/poi/src/main/version/Version.java.template +++ b/poi/src/main/version/Version.java.template @@ -27,7 +27,6 @@ package org.apache.poi; */ public class Version { private static final String VERSION_STRING = "@VERSION@"; - private static final String RELEASE_DATE = "@DSTAMP@"; /** * Return the basic version string, of the form @@ -37,13 +36,6 @@ public class Version { return VERSION_STRING; } - /** - * Return the date of the release / build - */ - public static String getReleaseDate() { - return RELEASE_DATE; - } - /** * Name of product: POI */ @@ -62,8 +54,7 @@ public class Version { */ public static void main(String[] args) { System.out.println( - "Apache " + getProduct() + " " + - getVersion() + " (" + getReleaseDate() + ")" + "Apache " + getProduct() + " " + getVersion() ); } } -- cgit v1.2.3