Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit96e9802

Browse files
author
zhourenjian
committed
Fixing bug that compound pipe session is not correctly being notified when the pipe is broken
1 parent451a1f0 commit96e9802

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎sources/net.sf.j2s.ajax/ajaxpipe/net/sf/j2s/ajax/CompoundPipeRunnable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ public boolean isPipeLive() {
9090

9191
@Override
9292
publicvoidpipeClosed() {
93-
super.pipeClosed();
9493
for (inti =0;i <pipes.length;i++) {
9594
if (pipes[i] !=null) {
9695
if (pipes[i].closer !=null) {
@@ -101,17 +100,18 @@ public void pipeClosed() {
101100
pipes[i] =null;
102101
}
103102
}
103+
super.pipeClosed();
104104
}
105105

106106
@Override
107107
publicvoidpipeLost() {
108-
super.pipeLost();
109108
for (inti =0;i <pipes.length;i++) {
110109
if (pipes[i] !=null) {
111110
pipes[i].pipeLost();
112111
pipes[i] =null;
113112
}
114113
}
114+
super.pipeLost();
115115
}
116116

117117
@Override

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp