My output is:
*** Barbossa *** says ruff! Tue, 30-Nov-2021
*** Puppy *** says ruuuuff! Tue, 30-Nov-2021
*** Rover *** says ruff! Tue, 30-Nov-2021
The mouse squeaks.
*** Spot *** is sleeping.
I added also parameter ,,Locale.ENGLISH" in class SuperDog for variable ,,formatter'' because it showed me day of the week in my language.
Can anybody have similar problem?
package com.codegym.task.task24.task2408;
/*
Please note just how Mouse differs from Dog
This class is familiar to you.
*/
public class Mouse implements Pet, CanSpeak {
@Override
public CanSpeak toCanSpeak(int i) {
return this;
}
@Override
public String speak() {
return "The mouse squeaks.";
}
}