(Settings s)
| 33 | protected boolean isBinary; |
| 34 | |
| 35 | public SprayAndWaitRouter(Settings s) { |
| 36 | super(s); |
| 37 | Settings snwSettings = new Settings(SPRAYANDWAIT_NS); |
| 38 | |
| 39 | initialNrofCopies = snwSettings.getInt(NROF_COPIES); |
| 40 | isBinary = snwSettings.getBoolean( BINARY_MODE); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Copy constructor. |
nothing calls this directly
no test coverage detected