File: CheckJavaVersion.java

package info (click to toggle)
ycmd 0%2B20240823%2Bgit8b61f19%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,040 kB
  • sloc: python: 44,018; cpp: 6,138; java: 486; sh: 378; cs: 207; javascript: 150; ansic: 82; makefile: 45; xml: 18; objc: 10
file content (8 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
class CheckJavaVersion
{
  public static void main( String[] args )
  {
    int featureVersion = java.lang.Runtime.version().feature();
    System.out.println( featureVersion );
  }
}