eclipse-ee4j / eclipse-ee4j/tyrus
Error in Deployment Algorithm description.
- Dominant language
- Java
- Stars
- 128
- Forks
- 49
- PR merge metrics
- No merged PRs in 30d
Description
```
public class MyApplicationConfigOne implements ServerApplicationConfig {
public Set getEndpointConfigs(Set> endpointClasses);
Set> s = new HashSet>;
s.add(ProgrammaticEndpointOne.class);
return s;
}
public Set getAnnotatedEndpointClasses(Set> scanned);
Set> s = new HashSet>;
s.add(AnnotatedEndpointOne.class);
return s;
}
}
```
Set> is returned instead of Set in getEndpointConfigs
#### Environment
Tyrus documentation 1.12
[https://tyrus.java.net/documentation/1.12/index/deployment.html](https://tyrus.java.net/documentation/1.12/index/deployment.html)
#### Affected Versions
[1.12]
Contributor guide
Assessment
This issue has not been assessed yet.