From a07a7e6e7283cee7b54bf93ff81e5dafff8003b3 Mon Sep 17 00:00:00 2001 From: Jestan Nirojan Date: Wed, 8 Feb 2012 00:15:02 +0530 Subject: [PATCH] 1)merge with upstream master multi module build 2)deleted outdated src dir --- src/main/java/org/jboss/netty/util/Version.java | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/main/java/org/jboss/netty/util/Version.java diff --git a/src/main/java/org/jboss/netty/util/Version.java b/src/main/java/org/jboss/netty/util/Version.java deleted file mode 100644 index 9ad7f4cf9a..0000000000 --- a/src/main/java/org/jboss/netty/util/Version.java +++ /dev/null @@ -1,13 +0,0 @@ -// DO NOT MODIFY - WILL BE OVERWRITTEN DURING THE BUILD PROCESS -package org.jboss.netty.util; -/** - * Provides the version information of Netty. - * @apiviz.landmark - */ -public final class Version { - /** The version identifier. */ - public static final String ID = "4.0.0.Alpha1-SNAPSHOT-f62bb85"; - /** Prints out the version identifier to stdout. */ - public static void main(String[] args) { System.out.println(ID); } - private Version() { super(); } -}