Author: jrthomerson
Date: Sun Apr 25 19:01:54 2010
New Revision: 937854
URL: http://svn.apache.org/viewvc?rev=937854&view=rev
Log:
change exception message to not mention Spring specifically
see thread: http://osdir.com/ml/users-wicket.apache.org/2010-04/msg00199.html
Modified:
wicket/branches/wicket-1.4.x/wicket-ioc/src/main/java/org/apache/wicket/injection/web/InjectorHolder.java
Modified:
wicket/branches/wicket-1.4.x/wicket-ioc/src/main/java/org/apache/wicket/injection/web/InjectorHolder.java
URL:
http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-ioc/src/main/java/org/apache/wicket/injection/web/InjectorHolder.java?rev=937854&r1=937853&r2=937854&view=diff
==============================================================================
---
wicket/branches/wicket-1.4.x/wicket-ioc/src/main/java/org/apache/wicket/injection/web/InjectorHolder.java
(original)
+++
wicket/branches/wicket-1.4.x/wicket-ioc/src/main/java/org/apache/wicket/injection/web/InjectorHolder.java
Sun Apr 25 19:01:54 2010
@@ -70,7 +70,7 @@ public class InjectorHolder
throw new IllegalStateException("InjectorHolder has not
been assigned an injector. "
+ "Use InjectorHolder.setInjector() to assign
an injector. "
+ "In most cases this should be done once
inside "
- + "SpringWebApplication subclass's init()
method.");
+ + "your WebApplication subclass's init()
method.");
}
return injector;
}