Skip to content

Commit

Permalink
fix(lints): analyze issues
Browse files Browse the repository at this point in the history
  • Loading branch information
RatakondalaArun committed Feb 10, 2025
1 parent 02754db commit 816fb40
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions lib/versions/v3/category/discover.dart
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,6 @@ class Discover extends Category<V3> {
return 'vote_count.asc';
case SortMoviesBy.voteCountDesc:
return 'vote_count.desc';
default:
return 'popularity.asc';
}
}

Expand All @@ -399,8 +397,6 @@ class Discover extends Category<V3> {
return 'first_air_date.asc';
case SortTvShowsBy.firstAirDateDesc:
return 'first_air_date.desc';
default:
return 'popularity.asc';
}
}

Expand All @@ -418,8 +414,6 @@ class Discover extends Category<V3> {
return '4';
case FilterTvShowsByStatus.pilot:
return '5';
default:
return '0';
}
}

Expand All @@ -439,8 +433,6 @@ class Discover extends Category<V3> {
return '5';
case FilterTvShowsByType.video:
return '6';
default:
return '0';
}
}
}
2 changes: 0 additions & 2 deletions lib/versions/v3/category/find.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ class Find extends Category<V3> {
return 'external_source=twitter_id';
case ExternalId.instagramId:
return 'external_source=instagram_id';
default:
return 'external_source=imdb_id';
}
}
}
4 changes: 0 additions & 4 deletions lib/versions/v3/category/trending.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ class Trending extends Category<V3> {
return 'tv';
case MediaType.person:
return 'person';
default:
return 'all';
}
}

Expand All @@ -62,8 +60,6 @@ class Trending extends Category<V3> {
return 'day';
case TimeWindow.week:
return 'week';
default:
return 'week';
}
}
}
2 changes: 0 additions & 2 deletions lib/versions/v4/category/lists.dart
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,6 @@ class ListsV4 extends Category<V4> {
return 'vote_average.asc';
case SortListBy.voteAverageDesc:
return 'vote_average.desc';
default:
return 'original_order.asc';
}
}

Expand Down

0 comments on commit 816fb40

Please sign in to comment.