Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CustomType - jspBig.type ServerCode has compatibility problem. #15

Closed
Aikes opened this issue Jun 12, 2015 · 0 comments
Closed

CustomType - jspBig.type ServerCode has compatibility problem. #15

Aikes opened this issue Jun 12, 2015 · 0 comments

Comments

@Aikes
Copy link

Aikes commented Jun 12, 2015

在 tomcat 5.5環境中會顯示下面錯誤訊息:
'for each' statements are only available if source level is 5.0

建議將jspBig.type的ServerCode
29:for (File file:roots) {
30: s+=file.getPath().substring(0,2)+" ";
31:}
取代成
for (int i = 0; i < roots.length; i++) {
s+=roots[i].toString().substring(0, 2)+" ";
}

keepwn added a commit that referenced this issue Jun 14, 2015
@keepwn keepwn closed this as completed Jun 14, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants