-
Bug
-
Resolution: Fixed
-
P4
-
None
-
b80
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8135888 | emb-9 | Philip Race | P4 | Resolved | Fixed | team |
The nervous text demo has a hardwired applet param tag :-
<param name=text value="Java SE Development Kit (JDK) 7.0">
This requires maintenance. Instead it should be
<param name=text value="Java SE Development Kit (JDK) ">
and the value of the release should be obtained from java.version
or perhaps the java.specification.version system property or (perhaps)
the text should simply not bother mentioning the version at all ...
<param name=text value="Java SE Development Kit (JDK) 7.0">
This requires maintenance. Instead it should be
<param name=text value="Java SE Development Kit (JDK) ">
and the value of the release should be obtained from java.version
or perhaps the java.specification.version system property or (perhaps)
the text should simply not bother mentioning the version at all ...
- backported by
-
JDK-8135888 Update NervousText demo to use java.version System property
- Resolved