Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class IntrospectionService implements IntrospectionConfigurer, IsIntrospe
private final NodePathValueHolder<Introspector> nodePathIntrospectorHolder = new NodePathValueHolder<Introspector>();
private final NodePathValueHolder<IntrospectionMode> nodePathIntrospectionModeHolder = new NodePathValueHolder<IntrospectionMode>();
private final ObjectDifferBuilder objectDifferBuilder;
private Introspector defaultIntrospector = new StandardIntrospector();
private Introspector defaultIntrospector;
private InstanceFactory instanceFactory = new PublicNoArgsConstructorInstanceFactory();
private PropertyAccessExceptionHandler defaultPropertyAccessExceptionHandler = new DefaultPropertyAccessExceptionHandler();

Expand Down Expand Up @@ -106,6 +106,10 @@ public Introspector introspectorForNode(final DiffNode node)
return nodePathIntrospector;
}

if (defaultIntrospector == null)
{
defaultIntrospector = new StandardIntrospector();
}
return defaultIntrospector;
}

Expand Down