Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.6DR#5
-
Component/s: ICE-Components
-
Labels:None
-
Environment:Java 1.4
-
Affects:Compatibility/Configuration
Description
When debugging Icefaces from trunk in Java 1.4 environment, The compiler fails at
line193 if (!user.contains("opera") && user.indexOf("msie") != -1) {
in icefaces\trunk\icefaces\component\src\com\icesoft\faces\component\style\OutputStyleRenderer.java
line193 if (!user.contains("opera") && user.indexOf("msie") != -1) {
in icefaces\trunk\icefaces\component\src\com\icesoft\faces\component\style\OutputStyleRenderer.java
Activity
Field | Original Value | New Value |
---|---|---|
Assignee | Jim Zhang [ jim.zhang ] |
Status | Open [ 1 ] | Resolved [ 5 ] |
Fix Version/s | 1.7DR#1 [ 10100 ] | |
Affects | [Compatibility/Configuration] | |
Assignee Priority | P2 | |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #14837 | Wed Sep 19 16:16:39 MDT 2007 | jim.zhang | |
Files Changed | ||||
![]() |
Fix Version/s | 1.6.2 [ 10111 ] |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Status | Reopened [ 4 ] | Closed [ 6 ] |
Resolution | Fixed [ 1 ] |
Resolution | Fixed [ 1 ] | |
Status | Closed [ 6 ] | Reopened [ 4 ] |
Assignee Priority | P2 | |
Assignee | Jim Zhang [ jim.zhang ] |
Fix Version/s | 1.6.2 [ 10111 ] |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Fix Version/s | 1.7 [ 10080 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
The String.contains() method does not exist in Java 1.4. To resolve the problem, instead of String.contains(), use String.indexOf() method.