Skip to content

Commit

Permalink
Remove @deprecated from package-info.java file (netty#8591)
Browse files Browse the repository at this point in the history
Motivation:

31fd66b added @deprecated to some classes but also to the package-info.java files. IntelliJ does not like to have these annotations on package-info.java

Modifications:

Remove annotation from package-info.java

Result:

Be able to compile against via IntelliJ
  • Loading branch information
normanmaurer authored Nov 23, 2018
1 parent 31fd66b commit 2a2bc21
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@
*
* @deprecated use NIO based SCTP implementation.
*/
@Deprecated
package io.netty.channel.sctp.oio;
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@
*
* @deprecated use NIO / EPOLL / KQUEUE transport.
*/
@Deprecated
package io.netty.channel.oio;
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@
*
* @deprecated use NIO / EPOLL / KQUEUE transport.
*/
@Deprecated
package io.netty.channel.socket.oio;

0 comments on commit 2a2bc21

Please sign in to comment.