fix linters

This commit is contained in:
Yadunand Prem
2022-09-25 14:59:51 +08:00
parent caccc490fe
commit bd2d0766ae
13 changed files with 38 additions and 49 deletions

View File

@@ -2,15 +2,12 @@
* The Applicable interface that can probably
* transform if given something that is
* probably an Immutator.
*
* Contains a single abstract method apply.
*
* CS2030S Lab 4
* AY22/23 Semester 1
*
* @author Yadunand Prem (10B)
*/
interface Applicable<T> {
<R> Applicable<R> apply(Probably<Immutator<R, T>> probablyImmutator);
<R> Applicable<R> apply(Probably<Immutator<R, T>> probablyImmutator);
}