flux/src/main/java/software/amazon/aws/clients/swf/flux/wf/graph/WorkflowGraphBuilder.java [610:622]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Class<?> paramType = param.getType();
            if (paramType.isAssignableFrom(MetricRecorder.class)) {
                continue;
            }

            if (paramType == Date.class) {
                // The step attribute encoding/decoding logic allows Date and Instant to be used
                // interchangeably, so for the purposes of attribute availability,
                // we'll coerce all Dates to Instants, to simplify the validation logic.
                paramType = Instant.class;
            }

            Attribute attr = param.getAnnotation(Attribute.class);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flux/src/main/java/software/amazon/aws/clients/swf/flux/wf/graph/WorkflowGraphBuilder.java [690:702]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                Class<?> paramType = param.getType();
                if (paramType.isAssignableFrom(MetricRecorder.class)) {
                    continue;
                }

                if (paramType == Date.class) {
                    // The step attribute encoding/decoding logic allows Date and Instant to be used
                    // interchangeably, so for the purposes of attribute availability,
                    // we'll coerce all Dates to Instants, to simplify the validation logic.
                    paramType = Instant.class;
                }

                Attribute attr = param.getAnnotation(Attribute.class);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



