aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/core/Version.java
blob: eff6b151ae83bd78c6ceccbd8e5f0084bd3f93ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package lombok.core;

public class Version {
	private static final String VERSION = "0.3.5";
	
	private Version() {
		//Prevent instantiation
	}
	
	public static void main(String[] args) {
		System.out.println(VERSION);
	}
	
	public static String getVersion() {
		return VERSION;
	}
}