diff --git a/src/share/classes/javax/script/ScriptEngineFactory.java b/src/share/classes/javax/script/ScriptEngineFactory.java
index 46b56ef66fc403785320e4feb9eba9389df6e441..f39f33de4c0375dff066915a3132acf7c2f7678b 100644
--- a/src/share/classes/javax/script/ScriptEngineFactory.java
+++ b/src/share/classes/javax/script/ScriptEngineFactory.java
@@ -115,20 +115,19 @@ public interface ScriptEngineFactory {
* with respect to concurrent execution of scripts and maintenance of state is also defined.
* These values for the THREADING key are:
*
null - The engine implementation is not thread safe, and cannot
+ *
null - The engine implementation is not thread safe, and cannot
* be used to execute scripts concurrently on multiple threads.
- * "MULTITHREADED" - The engine implementation is internally
+ *
"MULTITHREADED" - The engine implementation is internally
* thread-safe and scripts may execute concurrently although effects of script execution
* on one thread may be visible to scripts on other threads.
- * "THREAD-ISOLATED" - The implementation satisfies the requirements
+ *
"THREAD-ISOLATED" - The implementation satisfies the requirements
* of "MULTITHREADED", and also, the engine maintains independent values
* for symbols in scripts executing on different threads.
- * "STATELESS" - The implementation satisfies the requirements of
- * "THREAD-ISOLATED". In addition, script executions do not alter the
+ *
"STATELESS" - The implementation satisfies the requirements of
+ * "THREAD-ISOLATED". In addition, script executions do not alter the
* mappings in the Bindings which is the engine scope of the
* ScriptEngine. In particular, the keys in the Bindings
* and their associated values are the same before and after the execution of the script.
- *
- *
+ *
+ *
*
+ *
+ *
* public String getMethodCallSyntax(String obj,
* String m, String... args) {
* String ret = obj;
@@ -159,7 +159,8 @@ public interface ScriptEngineFactory {
* ret += ")";
* return ret;
* }
- *
* * @param obj The name representing the object whose method is to be invoked. The