Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Underscores in literals are not supported at this language level

I got this error when creating a final double using underscores to make the double more readable. It was declared in a run() method.

public void run() {        
    final double nanoSeconds = 1_000_000_000.0 / 60.0;    
}

I'm using IntelliJ IDEA 12.

like image 617
Michael Jarvis Avatar asked Jun 07 '13 14:06

Michael Jarvis


1 Answers

In IntelliJ IDEA you have to change Project language level in project settings to 7.0 level:

enter image description here

like image 69
Andremoniy Avatar answered Oct 01 '22 22:10

Andremoniy