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 2006/07/24 19:35:18 UTC

svn commit: r425130 - /db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/PermissionsDescriptor.java

Author: djd
Date: Mon Jul 24 10:35:18 2006
New Revision: 425130

URL: http://svn.apache.org/viewvc?rev=425130&view=rev
Log:
DERBY-1581 (partial) Fix build error in PermissionsDescriptor.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/PermissionsDescriptor.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/PermissionsDescriptor.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/PermissionsDescriptor.java?rev=425130&r1=425129&r2=425130&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/PermissionsDescriptor.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/sql/dictionary/PermissionsDescriptor.java Mon Jul 24 10:35:18 2006
@@ -34,8 +34,8 @@
 	implements Cloneable, Provider
 {
 	protected UUID oid;
-	private final String grantee;
-	private String grantor;
+	private String grantee;
+	private final String grantor;
 
 	PermissionsDescriptor( DataDictionary dd,
 								  String grantee,
@@ -85,8 +85,8 @@
 	}
 	
 	/*----- getter functions for rowfactory ------*/
-	public String getGrantee() { return grantee;}
-	public String getGrantor() { return grantor;}
+	public final String getGrantee() { return grantee;}
+	public final String getGrantor() { return grantor;}
 
 	/**
 	 * Gets the UUID of the table.