Skip to content

Commit f349c77

Browse files
author
zhourenjian@gmail.com
committed
Fixing typo
1 parent ce0fbe0 commit f349c77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sources/net.sf.j2s.ajax/ajaxpipe/net/sf/j2s/ajax/SimplePipeRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -718,14 +718,14 @@ public void onLoaded() {
718718
* (non-Javadoc)
719719
* @see net.sf.j2s.ajax.HttpRequest#initializeReceivingMonitor()
720720
*/
721-
public static HttpRequest getRequestWithMonitor(final HttpRequest.IXHRReceiving montior) {
721+
public static HttpRequest getRequestWithMonitor(final HttpRequest.IXHRReceiving monitor) {
722722
/**
723723
* @j2sNative
724724
*/
725725
{
726726
if (requestFactory != null && requestFactory instanceof IHttpPipeRequestFactory) {
727727
try {
728-
return ((IHttpPipeRequestFactory) requestFactory).createRequestWithMonitor(montior);
728+
return ((IHttpPipeRequestFactory) requestFactory).createRequestWithMonitor(monitor);
729729
} catch (Exception e) {
730730
e.printStackTrace();
731731
}
@@ -734,7 +734,7 @@ public static HttpRequest getRequestWithMonitor(final HttpRequest.IXHRReceiving
734734
return new HttpRequest() {
735735
@Override
736736
protected IXHRReceiving initializeReceivingMonitor() {
737-
return montior;
737+
return monitor;
738738
}
739739
};
740740
}

0 commit comments

Comments
 (0)