diff --git a/README.md b/README.md index f9a8733..2acce14 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Jackdaw was inspired by [Lombok](http://projectlombok.org) project, but in compa
  • @JComparator
  • @JFactoryMethod
  • @JFunction
  • +
  • @JIgnore
  • @JMessage
  • @JPredicate
  • @JRepeatable
  • @@ -445,6 +446,11 @@ public final class CompanyFunctions { By default, all generated functions are null-safe. Use `nullable` parameter to generate not null-safe functions. +### @JIgnore + +The **@JIgnore** annotation allows to ignore classes or interfaces from Jackdaw's processing. + + ### @JMessage The **@JMessage** annotation does not generate any additional code, instead of this it prints information in logs during project compiling. It could be useful to make some really meaningful notes for you or your team, instead of using TODOs in comments. diff --git a/jackdaw-core/src/main/java/com/github/vbauer/jackdaw/annotation/JIgnore.java b/jackdaw-core/src/main/java/com/github/vbauer/jackdaw/annotation/JIgnore.java index f8331b7..0cd8819 100644 --- a/jackdaw-core/src/main/java/com/github/vbauer/jackdaw/annotation/JIgnore.java +++ b/jackdaw-core/src/main/java/com/github/vbauer/jackdaw/annotation/JIgnore.java @@ -9,8 +9,6 @@ /** * Ignore class from Jackdaw's processing. * - * This annotation is created for development purposes. - * * @author Vladislav Bauer */