diff options
author | wisberg <wisberg> | 2002-12-18 23:10:05 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2002-12-18 23:10:05 +0000 |
commit | e28f00ed6262a74e9af1d77c4b685ad3db7f2bc1 (patch) | |
tree | 5539dbfca41a02bb1e7940fd0f422befc86def38 /bridge | |
parent | 91f0430dcae0c34e662a6ba65a0ead7d30625f3a (diff) | |
download | aspectj-e28f00ed6262a74e9af1d77c4b685ad3db7f2bc1.tar.gz aspectj-e28f00ed6262a74e9af1d77c4b685ad3db7f2bc1.zip |
1.1b2V_1_1_b2
Diffstat (limited to 'bridge')
-rw-r--r-- | bridge/src/org/aspectj/bridge/Version.java | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/bridge/src/org/aspectj/bridge/Version.java b/bridge/src/org/aspectj/bridge/Version.java index bbaa2dad3..663c17b35 100644 --- a/bridge/src/org/aspectj/bridge/Version.java +++ b/bridge/src/org/aspectj/bridge/Version.java @@ -1,16 +1,15 @@ -/* ******************************************************************* - * Copyright (c) 1999-2002 Xerox Corporation, +/* ******************************************************************** + * Copyright (c) 1998-2001 Xerox Corporation, * 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 - * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/cpl-v10.html - * - * Contributors: - * Xerox/PARC initial implementation - * ******************************************************************/ - + * which accompanies this distribution and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * Contributors: + * Xerox/PARC initial implementation + * *******************************************************************/ package org.aspectj.bridge; @@ -28,13 +27,13 @@ public class Version { public static final long NOTIME = 0L; /** set by build script */ - public static final String text = DEVELOPMENT; + public static final String text = "1.1b2"; /** * Time text set by build script using SIMPLE_DATE_FORMAT. * (if DEVELOPMENT version, invalid) */ - public static final String time_text = ""; + public static final String time_text = "12/18/02 at 03:20:03 PST"; /** * time in seconds-since-... format, used by programmatic clients. @@ -43,7 +42,7 @@ public class Version { public static final long time; /** format used by build script to set time_text */ - public static final String SIMPLE_DATE_FORMAT = ""; + public static final String SIMPLE_DATE_FORMAT = "MM/dd/yy 'at' hh:mm:ss z"; // if not DEVELOPMENT version, read time text using format used to set time static { |