Skip to content

Commit 5278ffd

Browse files
author
zhourenjian
committed
Fixed bug that CompoundPipeSWTRequest#configure does not register pipes
1 parent 03784a8 commit 5278ffd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/net.sf.j2s.ajax/ajaxswt/net/sf/j2s/ajax/CompoundPipeSWTRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public static void configure(String id, String pipeURL, String pipeMethod,
105105
String rpcURL, String rpcMethod) {
106106
pipe = CompoundPipeRequest.retrievePipe(id, false);
107107
if (pipe == null) {
108-
pipe = createSWTWrappedPipe(id);
108+
pipe = CompoundPipeRequest.registerPipe(createSWTWrappedPipe(id));
109109
}
110110
if (pipeURL != null) {
111111
pipe.pipeURL = pipeURL;

0 commit comments

Comments
 (0)