1 // DO NOT MODIFY - WILL BE OVERWRITTEN DURING THE BUILD PROCESS
2 package org.jboss.netty.util;
3 /**
4 * Provides the version information of Netty.
5 * @apiviz.landmark
6 */
7 public final class Version {
8 /** The version identifier. */
9 public static final String ID = "3.5.13.Final-35baac4";
10 /** Prints out the version identifier to stdout. */
11 public static void main(String[] args) { System.out.println(ID); }
12 private Version() { super(); }
13 }