Fixed small issue with AbstractProvider and EmptyProvider.

This commit is contained in:
JesseBrault0709 2023-05-13 13:55:49 +02:00
parent 369f9da53d
commit 450e5ca428
2 changed files with 0 additions and 10 deletions

View File

@ -23,9 +23,4 @@ abstract class AbstractProvider<T> implements Provider<T> {
})
}
@Override
boolean isEmpty() {
false
}
}

View File

@ -26,11 +26,6 @@ final class EmptyProvider<T> implements Provider<T> {
CollectionProviders.fromCollection([]) as CollectionProvider<T>
}
@Override
boolean isEmpty() {
true
}
@Override
String toString() {
"EmptyProvider()"