-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
backend-refactor-61-repo_package_cleaner_convention #62
base: main
Are you sure you want to change the base?
backend-refactor-61-repo_package_cleaner_convention #62
Conversation
standard-librarian
commented
Apr 13, 2023
•
edited
Loading
edited
…- (prefix) from interfaces
@@ -46,13 +46,13 @@ | |||
* @author Mohamed Sallam | |||
*/ | |||
public class LockService extends Service { | |||
private final DetoxPeriodRepository detoxPeriodRepository; | |||
private final DetoxPeriodRepositoryImpl detoxPeriodRepository; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private final DetoxPeriodRepositoryImpl detoxPeriodRepository; | |
private final DetoxPeriodRepository detoxPeriodRepository; |
I think this the use of the interface.
Don't forget to import its lib.
private DeviceRepositoryImpl deviceRepository; | ||
private GroupRepositoryImpl groupRepository; | ||
private DetoxPeriodRepositoryImpl detoxPeriodRepository; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private DeviceRepositoryImpl deviceRepository; | |
private GroupRepositoryImpl groupRepository; | |
private DetoxPeriodRepositoryImpl detoxPeriodRepository; | |
private DeviceRepository deviceRepository; | |
private GroupRepositoryI groupRepository; | |
private DetoxPeriodRepository detoxPeriodRepository; |
The same as before.
@@ -33,7 +33,7 @@ | |||
* @author Mohamed Sallam | |||
*/ | |||
public class UpdateGroupViewModel extends AndroidViewModel { | |||
private final GroupRepository groupRepository; | |||
private final GroupRepositoryImpl groupRepository; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private final GroupRepositoryImpl groupRepository; | |
private final GroupRepository groupRepository; |
The same as before.