Skip to content

Commit

Permalink
and another one
Browse files Browse the repository at this point in the history
  • Loading branch information
timo-a committed Oct 6, 2024
1 parent e56ff31 commit 1fe9368
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,25 @@ void a()
class B {}
}
"""
),
java(
"""
import java.lang.annotation.Target;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.ser.VirtualBeanPropertyWriter;
@Target({ElementType.ANNOTATION_TYPE, ElementType.TYPE })
public @interface JsonAppend {}
""",
"""
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.ser.VirtualBeanPropertyWriter;
import java.lang.annotation.Target;
@Target({ElementType.ANNOTATION_TYPE, ElementType.TYPE })
public @interface JsonAppend {}
"""
)
);
}
Expand Down

0 comments on commit 1fe9368

Please sign in to comment.