You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2004/11/04 20:48:21 UTC

svn commit: rev 56618 - incubator/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary

Author: djd
Date: Thu Nov  4 11:48:20 2004
New Revision: 56618

Modified:
   incubator/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/SPSDescriptor.java
Log:
Cleanup one line of code to get the current context from the current language connection
and not through the static ContextService method.


Modified: incubator/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/SPSDescriptor.java
==============================================================================
--- incubator/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/SPSDescriptor.java	(original)
+++ incubator/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/SPSDescriptor.java	Thu Nov  4 11:48:20 2004
@@ -304,7 +304,7 @@
 	)
 		throws StandardException
 	{
-		ContextManager cm = ContextService.getFactory().getCurrentContextManager();
+		ContextManager cm = lcc.getContextManager();
 		DependencyManager dm;
 		ProviderInfo[] providerInfo;