From b53ccb3807b711df2e6ed7be2389c7f33f1957d2 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Sun, 31 Jan 2010 16:01:14 +0000 Subject: [PATCH] widened FactoryBean's "getObjectType" signature to return any Class (SPR-6692) --- .../java/org/springframework/beans/factory/FactoryBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.springframework.beans/src/main/java/org/springframework/beans/factory/FactoryBean.java b/org.springframework.beans/src/main/java/org/springframework/beans/factory/FactoryBean.java index 4b8247f368..5f30376f11 100644 --- a/org.springframework.beans/src/main/java/org/springframework/beans/factory/FactoryBean.java +++ b/org.springframework.beans/src/main/java/org/springframework/beans/factory/FactoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2008 the original author or authors. + * Copyright 2002-2010 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. @@ -90,7 +90,7 @@ public interface FactoryBean { * or null if not known at the time of the call * @see ListableBeanFactory#getBeansOfType */ - Class getObjectType(); + Class getObjectType(); /** * Is the object managed by this factory a singleton? That is, -- GitLab