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 da...@apache.org on 2013/06/27 09:38:29 UTC

svn commit: r1497230 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java

Author: dag
Date: Thu Jun 27 07:38:29 2013
New Revision: 1497230

URL: http://svn.apache.org/r1497230
Log:
DERBY-673: Get rid of the NodeFactory 

Remove an erroneously re-introduced "public" keyword from method
getParameterTypes. This removes a FindBugs warning about "exposing
internal representation by returning reference to mutable object".


Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java?rev=1497230&r1=1497229&r2=1497230&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java Thu Jun 27 07:38:29 2013
@@ -587,7 +587,7 @@ public class CompilerContextImpl extends
 	/**
      * Get an array of type descriptors for all the ? parameters.
 	 */
-    public DataTypeDescriptor[] getParameterTypes()
+    DataTypeDescriptor[] getParameterTypes()
 	{
 		return parameterDescriptors;
 	}