Skip to content

Commit

Permalink
#2313 Mark YieldInfoNode.propType as nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
homedirectory committed Oct 8, 2024
1 parent 638716c commit a643c9d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

import ua.com.fielden.platform.eql.meta.PropType;

import javax.annotation.Nullable;

/**
* A structure used for representing yielded properties. It is used strictly for metadata generation needs.
* <p>
Expand All @@ -20,5 +22,5 @@
*
* @author TG Team
*/
public record YieldInfoNode(String name, PropType propType, boolean nonnullable, Map<String, YieldInfoNode> items) {
public record YieldInfoNode(String name, @Nullable PropType propType, boolean nonnullable, Map<String, YieldInfoNode> items) {
}

0 comments on commit a643c9d

Please sign in to comment.