Enable searching for sections in flipper

Summary:
as title, enables section name matching in the flipper search bar
Depends on D14300283

Reviewed By: passy

Differential Revision: D14300298

fbshipit-source-id: 33caefccf04b833c8606a083a13f3bffea6c419d
This commit is contained in:
Mihaela Ogrezeanu
2019-03-06 07:49:06 -08:00
committed by Facebook Github Bot
parent a665a12aec
commit de43fd29c6

View File

@@ -166,8 +166,8 @@ public class DebugSectionDescriptor extends NodeDescriptor<DebugSection> {
@Override
public boolean matches(String query, DebugSection node) throws Exception {
// TODO T39526148
return false;
final NodeDescriptor descriptor = descriptorForClass(Object.class);
return descriptor.matches(query, node);
}
@Override