File tree 2 files changed +3
-10
lines changed
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 26
26
27
27
namespace proto_processing_lib {
28
28
29
- // Factory Method to create UnknownFieldChecker.
30
- static const proto_processing_lib::proto_scrubber::FieldCheckerInterface*
31
- FactoryCreateUnknownFieldChecker () {
32
- return proto_processing_lib::proto_scrubber::UnknownFieldChecker::
33
- GetDefault ();
34
- }
35
-
36
29
// Factory Method to create UnknownFieldChecker.
37
30
static std::unique_ptr<proto_processing_lib::FieldMaskTreeInterface>
38
31
FactoryCreateFieldMaskTree (
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class FieldMaskTree : public FieldMaskTreeInterface {
72
72
// Returns OK if all "paths" are legal, otherwise returns INVALID_ARGUMENT and
73
73
// the tree will be left in a broken state. Calling this method again on a
74
74
// broken FieldMaskTree will yield an error of FAILED_PRECONDITION.
75
- absl::Status AddOrIntersectFieldPaths (const std::vector<std::string>& paths);
75
+ absl::Status AddOrIntersectFieldPaths (const std::vector<std::string>& paths) override ;
76
76
77
77
// Checks if a field is on this tree. Returns "kInclude" if the field is on a
78
78
// leaf node of the tree, "kPartial" if it's on a non-leaf node and "kExclude"
@@ -96,10 +96,10 @@ class FieldMaskTree : public FieldMaskTreeInterface {
96
96
}
97
97
98
98
// Returns the status of the tree.
99
- absl::Status status () { return status_; }
99
+ absl::Status status () override { return status_; }
100
100
101
101
// Returns root node of the tree.
102
- const FieldMaskNode* root () const { return root_.get (); }
102
+ const FieldMaskNode* root () const override { return root_.get (); }
103
103
104
104
private:
105
105
// The root node of the FieldMask tree.
You can’t perform that action at this time.
0 commit comments