File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sources/net.sf.j2s.ajax/ajaxpipe/net/sf/j2s/ajax Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -718,14 +718,14 @@ public void onLoaded() {
718
718
* (non-Javadoc)
719
719
* @see net.sf.j2s.ajax.HttpRequest#initializeReceivingMonitor()
720
720
*/
721
- public static HttpRequest getRequestWithMonitor (final HttpRequest .IXHRReceiving montior ) {
721
+ public static HttpRequest getRequestWithMonitor (final HttpRequest .IXHRReceiving monitor ) {
722
722
/**
723
723
* @j2sNative
724
724
*/
725
725
{
726
726
if (requestFactory != null && requestFactory instanceof IHttpPipeRequestFactory ) {
727
727
try {
728
- return ((IHttpPipeRequestFactory ) requestFactory ).createRequestWithMonitor (montior );
728
+ return ((IHttpPipeRequestFactory ) requestFactory ).createRequestWithMonitor (monitor );
729
729
} catch (Exception e ) {
730
730
e .printStackTrace ();
731
731
}
@@ -734,7 +734,7 @@ public static HttpRequest getRequestWithMonitor(final HttpRequest.IXHRReceiving
734
734
return new HttpRequest () {
735
735
@ Override
736
736
protected IXHRReceiving initializeReceivingMonitor () {
737
- return montior ;
737
+ return monitor ;
738
738
}
739
739
};
740
740
}
You can’t perform that action at this time.
0 commit comments