Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
1.6.1
-
None
Description
https://deltaspike.apache.org/documentation/data.html
In paragraph "Deactivating Repositories" the doc shows two alternatives, an abstract class and an interface. The interface example is wrong:
instead of
public interface PersonRepository implements Deactivatable{
use
public interface PersonRepository extends Deactivatable {
s/implements/extends/
additional blank before curly bracket