@@ -231,31 +231,30 @@ namespace edm {
231231 AR_WATCH_USING_METHOD_1 (watchPostSourceProcessBlock)
232232
233233 // / signal is emitted before the source opens a file
234- typedef signalslot::Signal<void (std::string const &, bool )> PreOpenFile;
234+ typedef signalslot::Signal<void (std::string const &)> PreOpenFile;
235235 PreOpenFile preOpenFileSignal_;
236236 void watchPreOpenFile (PreOpenFile::slot_type const & iSlot) { preOpenFileSignal_.connect (iSlot); }
237- AR_WATCH_USING_METHOD_2 (watchPreOpenFile)
237+ AR_WATCH_USING_METHOD_1 (watchPreOpenFile)
238238
239239 // / signal is emitted after the source opens a file
240240 // Note this is only done for a primary file, not a secondary one.
241- typedef signalslot::Signal<void (std::string const &, bool )> PostOpenFile;
241+ typedef signalslot::Signal<void (std::string const &)> PostOpenFile;
242242 PostOpenFile postOpenFileSignal_;
243243 void watchPostOpenFile (PostOpenFile::slot_type const & iSlot) { postOpenFileSignal_.connect_front (iSlot); }
244- AR_WATCH_USING_METHOD_2 (watchPostOpenFile)
244+ AR_WATCH_USING_METHOD_1 (watchPostOpenFile)
245245
246- // / signal is emitted before the Closesource closes a file
246+ // / signal is emitted before the source closes a file
247247 // First argument is the LFN of the file which is being closed.
248- // Second argument is false if fallback is used; true otherwise.
249- typedef signalslot::Signal<void (std::string const &, bool )> PreCloseFile;
248+ typedef signalslot::Signal<void (std::string const &)> PreCloseFile;
250249 PreCloseFile preCloseFileSignal_;
251250 void watchPreCloseFile (PreCloseFile::slot_type const & iSlot) { preCloseFileSignal_.connect (iSlot); }
252- AR_WATCH_USING_METHOD_2 (watchPreCloseFile)
251+ AR_WATCH_USING_METHOD_1 (watchPreCloseFile)
253252
254- // / signal is emitted after the source opens a file
255- typedef signalslot::Signal<void (std::string const &, bool )> PostCloseFile;
253+ // / signal is emitted after the source closes a file
254+ typedef signalslot::Signal<void (std::string const &)> PostCloseFile;
256255 PostCloseFile postCloseFileSignal_;
257256 void watchPostCloseFile (PostCloseFile::slot_type const & iSlot) { postCloseFileSignal_.connect_front (iSlot); }
258- AR_WATCH_USING_METHOD_2 (watchPostCloseFile)
257+ AR_WATCH_USING_METHOD_1 (watchPostCloseFile)
259258
260259 typedef signalslot::Signal<void (StreamContext const &, ModuleCallingContext const &)> PreModuleBeginStream;
261260 PreModuleBeginStream preModuleBeginStreamSignal_;
0 commit comments