From: <rb...@us...> - 2014-02-07 13:59:39
|
Revision: 9112 http://sourceforge.net/p/htmlunit/code/9112 Author: rbri Date: 2014-02-07 13:59:36 +0000 (Fri, 07 Feb 2014) Log Message: ----------- GAEJavaScriptExecutor is public again but marked as part of the internal api. Modified Paths: -------------- trunk/htmlunit/src/changes/changes.xml trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/background/GAEJavaScriptExecutor.java Modified: trunk/htmlunit/src/changes/changes.xml =================================================================== --- trunk/htmlunit/src/changes/changes.xml 2014-02-07 12:09:20 UTC (rev 9111) +++ trunk/htmlunit/src/changes/changes.xml 2014-02-07 13:59:36 UTC (rev 9112) @@ -8,6 +8,9 @@ <body> <release version="2.14" date="???" description="FF24, Bugfixes, initial work on IE11"> + <action type="fix" dev="rbri" issue="1503"> + GAEJavaScriptExecutor is public again but marked as part of the internal api. + </action> <action type="fix" dev="rbri" issue="1509"> JavaScript: Fix encoding of innerHTML result for script content. </action> Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/background/GAEJavaScriptExecutor.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/background/GAEJavaScriptExecutor.java 2014-02-07 12:09:20 UTC (rev 9111) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/background/GAEJavaScriptExecutor.java 2014-02-07 13:59:36 UTC (rev 9112) @@ -17,6 +17,8 @@ import com.gargoylesoftware.htmlunit.WebClient; /** + * <span style="color:red">INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.</span><br/> + * * Google App Engine specific subclass to facilitate execution of JS jobs. * * @version $Revision$ @@ -24,7 +26,7 @@ * @author Kostadin Chikov * @author Ronald Brill */ -class GAEJavaScriptExecutor extends DefaultJavaScriptExecutor { +public class GAEJavaScriptExecutor extends DefaultJavaScriptExecutor { private static final long serialVersionUID = 6730370472962866668L; /** Creates an EventLoop for the webClient. |