Closed matyasberry closed 3 years ago
can you provide example that showcase what is considered to be subclasses something that shows useful usecase as reference for future users. also explain the feature in the issue so it serve as a doc for discussion sake if someone will look it up in the future.
can you provide example that showcase what is considered to be subclasses
yes, it's in the enhanced test file:
@Service
private interface SimpleService {
public String name();
}
private class ServiceImpl implements SimpleService {
@Override
public String name() {
return "duke";
}
}
private class SubServiceImpl extends ServiceImpl {
}
SubServiceImpl
is a subclass which before this change was not considered (and detected) as a service implementation.
as the title and test says.