aws-xray-recorder-sdk-core/src/main/java/com/amazonaws/xray/jakarta/servlet/AWSXRayServletFilter.java [80:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public AWSXRayServletFilter(@Nullable SegmentNamingStrategy segmentNamingStrategy, @Nullable AWSXRayRecorder recorder) {
        // Will be configured by web.xml otherwise.
        if (segmentNamingStrategy != null) {
            this.segmentNamingStrategy = segmentNamingStrategy;
        }
        // Will be configured by web.xml otherwise.
        if (recorder != null) {
            this.recorder = recorder;
        }
        this.listener = new AWSXRayServletAsyncListener(this, recorder);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-xray-recorder-sdk-core/src/main/java/com/amazonaws/xray/javax/servlet/AWSXRayServletFilter.java [80:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public AWSXRayServletFilter(@Nullable SegmentNamingStrategy segmentNamingStrategy, @Nullable AWSXRayRecorder recorder) {
        // Will be configured by web.xml otherwise.
        if (segmentNamingStrategy != null) {
            this.segmentNamingStrategy = segmentNamingStrategy;
        }
        // Will be configured by web.xml otherwise.
        if (recorder != null) {
            this.recorder = recorder;
        }
        this.listener = new AWSXRayServletAsyncListener(this, recorder);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



