Author: nbubna
Date: Tue Jan 5 15:59:48 2010
New Revision: 896109
URL: http://svn.apache.org/viewvc?rev=896109&view=rev
Log:
VELOCITY-750 remove errant initializing variable
Modified:
velocity/engine/branches/1.6.x/src/java/org/apache/velocity/runtime/RuntimeInstance.java
Modified:
velocity/engine/branches/1.6.x/src/java/org/apache/velocity/runtime/RuntimeInstance.java
URL:
http://svn.apache.org/viewvc/velocity/engine/branches/1.6.x/src/java/org/apache/velocity/runtime/RuntimeInstance.java?rev=896109&r1=896108&r2=896109&view=diff
==============================================================================
---
velocity/engine/branches/1.6.x/src/java/org/apache/velocity/runtime/RuntimeInstance.java
(original)
+++
velocity/engine/branches/1.6.x/src/java/org/apache/velocity/runtime/RuntimeInstance.java
Tue Jan 5 15:59:48 2010
@@ -282,7 +282,7 @@
*/
private void requireInitialization()
{
- if (!initialized && !initializing)
+ if (!initialized)
{
log.debug("Velocity was not initialized! Calling init()...");
try