Skip to content

Commit

Permalink
Merge pull request #105 from axonivy/typesAsFields
Browse files Browse the repository at this point in the history
Upgrade Actions-Pipeline
  • Loading branch information
ivy-rew authored Oct 14, 2024
2 parents d1daba7 + 1b23ab3 commit d773d25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
**/*/target/*-reports/*.xml
- name: Archive build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: |
**/target/*.jar
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ Adds implementations of a generic type into the schema. It will use a virtual ty
@Implementations(ComponentTypes)
public Component component;


public static class ComponentTypes implements TypeReqistry {
@Override
public Set<Class<?>> types() {
Expand Down Expand Up @@ -148,8 +147,7 @@ This is perfect if you maintain a Map with well known keys in your Java objects.
public CheckTypes checks;

@TypesAsFields(Checks)
public interface CheckTypes implements Map<String, MyChecker>

public interface CheckTypes implements Map<String, MyChecker>{}

public static class Checks implements FieldRegistry {
@Override
Expand Down

0 comments on commit d773d25

Please sign in to comment.