iep-service/src/main/java/com/netflix/iep/service/DefaultClassFactory.java [38:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override public <T> T newInstance(Type type, Function<Type, Object> overrides)
      throws CreationException {
    Class<?> cls = (Class<?>) type;
    Constructor<?>[] constructors = cls.getDeclaredConstructors();
    if (constructors.length == 1) {
      Constructor<?> c = constructors[0];
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



iep-spring/src/main/java/com/netflix/iep/spring/SpringClassFactory.java [44:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override public <T> T newInstance(Type type, Function<Type, Object> overrides)
      throws CreationException {
    Class<?> cls = (Class<?>) type;
    Constructor<?>[] constructors = cls.getDeclaredConstructors();
    if (constructors.length == 1) {
      Constructor<?> c = constructors[0];
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



