File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,19 @@ public abstract class SimplePipeRunnable extends SimpleRPCRunnable {
72
72
@ J2SIgnore
73
73
List <SimpleSerializable > pipeData ;
74
74
75
+ @ J2SIgnore
76
+ int pipeMode ;
77
+
78
+ @ J2SIgnore
79
+ public int getPipeMode () {
80
+ return pipeMode ;
81
+ }
82
+
83
+ @ J2SIgnore
84
+ public void setPipeMode (int pipeMode ) {
85
+ this .pipeMode = pipeMode ;
86
+ }
87
+
75
88
@ J2SIgnore
76
89
public List <SimpleSerializable > getPipeData () {
77
90
return pipeData ;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ public Class<?> loadClass(String clazzName) throws ClassNotFoundException {
70
70
}
71
71
return clazz ;
72
72
} catch (Throwable e ) {
73
- e .printStackTrace ();
73
+ // e.printStackTrace();
74
74
}
75
75
}
76
76
return getParent ().loadClass (clazzName );
@@ -122,7 +122,7 @@ public static Object loadSimpleInstance(String clazzName) {
122
122
return runnableClass .newInstance ();
123
123
}
124
124
} catch (Exception e ) {
125
- e .printStackTrace ();
125
+ // e.printStackTrace();
126
126
}
127
127
return null ;
128
128
}
You can’t perform that action at this time.
0 commit comments