File: CheckJavaVersion.java

package info (click to toggle)
ycmd 0%2B20230103%2Bgitf53e7ac%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,904 kB
  • sloc: python: 41,740; cpp: 6,055; java: 295; sh: 271; cs: 194; javascript: 150; ansic: 82; makefile: 46; 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 );
  }
}