Skip to content

Commit

Permalink
fix: language warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iampawan committed Jan 23, 2025
1 parent 70a1e12 commit ad8f42f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions lib/src/flutter/clippers/vx_arc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ class VxArcClipper extends CustomClipper<Path> {
return _getBottomPath(size);
case VxEdge.left:
return _getLeftPath(size);
default:
return _getRightPath(size);
}
}

Expand Down
2 changes: 0 additions & 2 deletions lib/src/flutter/clippers/vx_diagonal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ class VxDiagonalClipper extends CustomClipper<Path> {
return _getBottomLeftPath(size);
case VxDiagonalPosition.bottomRight:
return _getBottomRightPath(size);
default:
return _getBottomLeftPath(size);
}
}

Expand Down
2 changes: 0 additions & 2 deletions lib/src/flutter/filters.dart
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,6 @@ class VxFilter extends VxWidgetBuilder<Widget> {
case VxColorFilter.polaroid:
myMatrix = _polaroid;
break;
default:
myMatrix = _noFilter;
}
return this;
}
Expand Down
2 changes: 0 additions & 2 deletions lib/src/flutter/list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,6 @@ class VxOrderedList extends StatelessWidget {
return '${_toRomanNumeral(index)}.';
case VxListType.lowerRoman:
return '${_toRomanNumeral(index).toLowerCase()}.';
default:
return '$index.';
}
}

Expand Down

0 comments on commit ad8f42f

Please sign in to comment.