Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: add checkstyle rule for MissingDeprecated #1167

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

/**
* Response for requesting the status of a {@link ContractNegotiation}.
*
* @deprecated Control API is deprecated, use Data Management API instead.
*/
@Deprecated
public class NegotiationStatusResponse {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public interface IdentityHub {

/**
* Workaround for Hackathon .NET client
*
* @deprecated use {@link #write(String)}
*/
@Deprecated
void write(Commit commit);
Expand Down
2 changes: 2 additions & 0 deletions resources/edc-checkstyle-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -427,5 +427,7 @@
</module>
<module name="TypecastParenPad"/>
<module name="InnerAssignment"/>
<!-- Require both @deprecated Javadoc tag and @Deprecated annotation -->
<module name="MissingDeprecated"/>
</module>
</module>