janotav / ali-idea-plugin

HP ALI support for Intellij IDEA
Apache License 2.0
8 stars 10 forks source link

ALI IDEA Plugin is compatible with Java 7 only #2

Closed dousa closed 10 years ago

dousa commented 10 years ago

ALI IDEA Plugin is compile-able with java 7 only even though the system requirements of IntelliJ IDEA is JDK 1.6 or higher.

The problem is caused by using "Character.isAlphabetic(int codePoint)" in Lexer.java which was introduced in version 1.7.

janotav commented 10 years ago

Fixed by switching to "CharUtils.isAsciiAlphanumeric(char ch)".