Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
c9d5b129
Unverified
Commit
c9d5b129
authored
Jan 29, 2019
by
Michael Goderbauer
Committed by
GitHub
Jan 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete ignore: (#27199)
parent
9499cb10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
binding.dart
packages/flutter/lib/src/rendering/binding.dart
+1
-2
object.dart
packages/flutter/lib/src/rendering/object.dart
+0
-2
No files found.
packages/flutter/lib/src/rendering/binding.dart
View file @
c9d5b129
...
...
@@ -302,8 +302,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Semanti
void
hitTest
(
HitTestResult
result
,
Offset
position
)
{
assert
(
renderView
!=
null
);
renderView
.
hitTest
(
result
,
position:
position
);
// This super call is safe since it will be bound to a mixed-in declaration.
super
.
hitTest
(
result
,
position
);
// ignore: abstract_super_member_reference
super
.
hitTest
(
result
,
position
);
}
Future
<
void
>
_forceRepaint
()
{
...
...
packages/flutter/lib/src/rendering/object.dart
View file @
c9d5b129
...
...
@@ -410,7 +410,6 @@ class PaintingContext extends ClipContext {
/// * `painter` is a callback that will paint with the `clipRRect` applied. This
/// function calls the `painter` synchronously.
/// * `clipBehavior` controls how the path is clipped.
// ignore: deprecated_member_use
void
pushClipRRect
(
bool
needsCompositing
,
Offset
offset
,
Rect
bounds
,
RRect
clipRRect
,
PaintingContextCallback
painter
,
{
Clip
clipBehavior
=
Clip
.
antiAlias
})
{
assert
(
clipBehavior
!=
null
);
final
Rect
offsetBounds
=
bounds
.
shift
(
offset
);
...
...
@@ -435,7 +434,6 @@ class PaintingContext extends ClipContext {
/// * `painter` is a callback that will paint with the `clipPath` applied. This
/// function calls the `painter` synchronously.
/// * `clipBehavior` controls how the rounded rectangle is clipped.
// ignore: deprecated_member_use
void
pushClipPath
(
bool
needsCompositing
,
Offset
offset
,
Rect
bounds
,
Path
clipPath
,
PaintingContextCallback
painter
,
{
Clip
clipBehavior
=
Clip
.
antiAlias
})
{
assert
(
clipBehavior
!=
null
);
final
Rect
offsetBounds
=
bounds
.
shift
(
offset
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment