Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 95a9d0c

Browse files
committed
address Chinmay's comments
1 parent 5ac6d64 commit 95a9d0c

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

lib/ui/semantics/semantics_node.h

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,10 @@ struct SemanticsNode {
7171
std::vector<int32_t> children;
7272
};
7373

74-
/**
75-
* Contains semantic nodes that need to be updated.
76-
*
77-
* The keys in the map are stable node IDd, and the values contain
78-
* semantic information for the node corresponding to the ID.
79-
*/
74+
// Contains semantic nodes that need to be updated.
75+
//
76+
// The keys in the map are stable node IDd, and the values contain
77+
// semantic information for the node corresponding to the ID.
8078
using SemanticsNodeUpdates = std::unordered_map<int32_t, SemanticsNode>;
8179

8280
} // namespace blink

shell/platform/darwin/ios/framework/Source/accessibility_bridge.mm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ - (void)dealloc {
126126
_bridge = nullptr;
127127
_children.clear();
128128
[_parent release];
129-
if (_container != nil)
130-
[_container release];
129+
[_container release];
131130
[super dealloc];
132131
}
133132

0 commit comments

Comments
 (0)