您的位置:首页 > 其它

intellij 14 override 标红

2015-10-28 15:40 411 查看
Intellij IDEA 升级到 14 之后,之前那些 @override 的都标红,提示 @Override is not allowed when implement interface method !

我的本地是 maven 管理的项目, 所以在 pom.xml 中添加
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
就搞定了!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: