Skip to content

Commit

Permalink
Adding deprecation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ptorres-prowide authored and zubri committed May 8, 2023
1 parent 64244ba commit 4b1d764
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ public static List<Loop1> getLoop1List(final SwiftTagListBlock parentSequence) {
* @deprecated use {@link #getLoop1List()} instead
*/
@Deprecated
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2025)
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2024)
public List<SequenceA> getSequenceAList() {
return getSequenceAList(super.getSwiftMessageNotNullOrException().getBlock4());
}
Expand All @@ -658,7 +658,7 @@ public List<SequenceA> getSequenceAList() {
* @deprecated use {@link #getLoop1List(SwiftTagListBlock)} instead
*/
@Deprecated
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2025)
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2024)
public static List<SequenceA> getSequenceAList(final SwiftTagListBlock parentSequence) {
List<SequenceA> result = new ArrayList<>();
getLoop1List(parentSequence).forEach(s -> result.add(new SequenceA(s)));
Expand All @@ -669,7 +669,7 @@ public static List<SequenceA> getSequenceAList(final SwiftTagListBlock parentSeq
* @deprecated use Loop1 instead
*/
@Deprecated
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2025)
@com.prowidesoftware.deprecation.ProwideDeprecated(phase3=com.prowidesoftware.deprecation.TargetYear.SRU2024)
public static class SequenceA extends SwiftTagListBlock {
private SequenceA(final Loop1 content) {
super(content.getTags());
Expand Down

0 comments on commit 4b1d764

Please sign in to comment.