Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libraries/JANA/JEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ const typename T::collection_type* JEvent::GetCollection(std::string name, bool
auto collection = GetCollectionBase(name, throw_on_missing);
auto* typed_collection = dynamic_cast<const typename T::collection_type*>(collection);
if (throw_on_missing && typed_collection == nullptr) {
throw JException("Databundle with uniquename '%s' does not contain %s", JTypeInfo::demangle<typename T::collection_type>().c_str());
throw JException("Databundle with uniquename '%s' does not contain %s", name.c_str(), JTypeInfo::demangle<typename T::collection_type>().c_str());
}
return typed_collection;
}
Expand Down
Loading