From 662541a48edbaf083098ec3d7752becfb42b1a23 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Sat, 8 Jun 2019 14:26:39 +0200 Subject: [PATCH] Fix formatting See gh-23068 --- .../beans/factory/support/AbstractBeanFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java b/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java index 9145c73f09..e6fcceb9e4 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1648,7 +1648,7 @@ public abstract class AbstractBeanFactory extends FactoryBeanRegistrySupport imp return beanInstance; } if (!(beanInstance instanceof FactoryBean)) { - throw new BeanIsNotAFactoryException(beanName, beanInstance.getClass()); + throw new BeanIsNotAFactoryException(beanName, beanInstance.getClass()); } } -- GitLab