Я пытаюсь использовать FirebaseJobDispatcher
в первый раз, и я получил приведенный ниже код из примера.
FirebaseJobDispatcher dispatcher = new FirebaseJobDispatcher(new GooglePlayDriver(this));
Job job = FirebaseJobDispatcher.newJobBuilder()
.setTag("testing job")
.setService(SmsDeleterJobService.class)
.setReplaceCurrent(true)
.setConstraints(Constraint.ON_ANY_NETWORK)
.build();
dispatcher.mustSchedule(job);
Однако Android-студия подчеркнула его следующим сообщением
Variable 'dispatcher' initializer 'new FirebaseJobDispatcher(new GooglePlayDriver(this))' is redundant less... (Ctrl+F1)
Inspection info: This inspection points out the cases where a variable value is never used after its assignment, i.e.: - the variable never gets read after assignment OR
- the value is always overwritten with another assignment before the next variable read OR - the variable initializer is redundant (for one of the above two reasons)
Я посмотрел несколько примеров, и все они были такими.Что я делаю не так?