Skip to content

Commit 8831239

Browse files
enedclaude
andcommitted
fix: move deprecated_member_use ignore comment to correct line
The ignore comment needs to be on the line where the deprecated parameter is actually used, not above the return statement. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 169227d commit 8831239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workmanager/lib/src/workmanager_impl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ class Workmanager {
126126
'Use WorkmanagerDebug handlers instead. This parameter has no effect.')
127127
bool isInDebugMode = false,
128128
}) async {
129-
// ignore: deprecated_member_use
130129
return _platform.initialize(callbackDispatcher,
130+
// ignore: deprecated_member_use
131131
isInDebugMode: isInDebugMode);
132132
}
133133

0 commit comments

Comments
 (0)