AOSSIE-Org / AOSSIE-Org/NeuroTrack

fix(therapist): Method marked @override does not override any inherited method

オープン
#198 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Dart
スター
29
フォーク
50
PR マージ指標
30日以内にマージされた PR はありません

説明

## Summary

In the therapist app, `flutter analyze` reports:

```
warning - The method doesn't override an inherited method
lib/repository/supabase_therapist_repository.dart:114 - override_on_non_overriding_member
```

A method at line 114 of `supabase_therapist_repository.dart` is annotated with `@override` but the parent class/interface has no such method to override. This is a logic error — either the annotation is spurious, or the method signature doesn't match the interface definition and a bug is silently hiding.

## Steps to Reproduce

```
cd therapist
flutter analyze
```

## Expected Behavior

Every `@override` annotation correctly points to a method that exists in the parent type.

## Fix

- If the `@override` is unintentional: remove the annotation.
- If the method is meant to implement an interface method: fix the method name/signature to match the interface.

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。