Skip to content

Commit

Permalink
CodeGen update
Browse files Browse the repository at this point in the history
  • Loading branch information
ptorres-prowide committed May 4, 2023
1 parent 60fcadb commit e63b7c0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,6 @@ public List<SequenceA> getSequenceAList() {
@Deprecated
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2024)
public static List<SequenceA> getSequenceAList(final SwiftTagListBlock parentSequence) {
com.prowidesoftware.deprecation.DeprecationUtils.phase2(this.getClass(), "getSequenceAList(SwiftTagListBlock)", "Use getLoop1List(SwiftTagListBlock) instead");
List<SequenceA> result = new ArrayList<>();
getLoop1List(parentSequence).forEach(s -> result.add(new SequenceA(s)));
return result;
Expand All @@ -845,7 +844,6 @@ public static List<SequenceA> getSequenceAList(final SwiftTagListBlock parentSeq
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2024)
public static class SequenceA extends SwiftTagListBlock {
private SequenceA(final Loop1 content) {
com.prowidesoftware.deprecation.DeprecationUtils.phase2(this.getClass(), "SequenceA(Loop1)", "Use Loop1() instead");
super(content.getTags());
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,6 @@ public List<SequenceA> getSequenceAList() {
@Deprecated
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2024)
public static List<SequenceA> getSequenceAList(final SwiftTagListBlock parentSequence) {
com.prowidesoftware.deprecation.DeprecationUtils.phase2(this.getClass(), "getSequenceAList", "Use getLoop1List(SwiftTagListBlock) instead");
List<SequenceA> result = new ArrayList<>();
getLoop1List(parentSequence).forEach(s -> result.add(new SequenceA(s)));
return result;
Expand All @@ -674,7 +673,6 @@ public static List<SequenceA> getSequenceAList(final SwiftTagListBlock parentSeq
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2024)
public static class SequenceA extends SwiftTagListBlock {
private SequenceA(final Loop1 content) {
com.prowidesoftware.deprecation.DeprecationUtils.phase2(this.getClass(), "SequenceA(Loop1)", "Use Loop1() instead");
super(content.getTags());
}
}
Expand Down

0 comments on commit e63b7c0

Please sign in to comment.