fix version string in snapshot running of jetty8

This commit is contained in:
Jesse McConnell 2012-02-17 11:46:01 -06:00
parent 8e5edbd8ca
commit 92fc45a77f
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class Server extends HandlerWrapper implements Attributes
Server.class.getPackage().getImplementationVersion()!=null)
__version=Server.class.getPackage().getImplementationVersion();
else
__version=System.getProperty("jetty.version","8.0.y.z-SNAPSHOT");
__version=System.getProperty("jetty.version","8.y.z-SNAPSHOT");
}
private final Container _container=new Container();