mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
style: stricter linting
This commit is contained in:
parent
d0f7746a01
commit
2eb50dec69
12 changed files with 47 additions and 27 deletions
|
@ -129,12 +129,12 @@ class _RefLogIterator implements Iterator<RefLogEntry> {
|
|||
/// Pointer to memory address for allocated reflog object.
|
||||
final Pointer<git_reflog> _reflogPointer;
|
||||
|
||||
RefLogEntry? _currentEntry;
|
||||
late RefLogEntry _currentEntry;
|
||||
int _index = 0;
|
||||
late final int _count;
|
||||
|
||||
@override
|
||||
RefLogEntry get current => _currentEntry!;
|
||||
RefLogEntry get current => _currentEntry;
|
||||
|
||||
@override
|
||||
bool moveNext() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue