merged with upstream master

This commit is contained in:
Jestan Nirojan 2011-12-11 23:08:47 +05:30
parent 7397bba454
commit 34152857ce

View File

@ -0,0 +1,13 @@
// 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(); }
}