I just did a sync, ant clobber, ant all and the build is failing with the
following error:
[javac] Compiling 7 source files to C:\p4clients\main_codeline\classes
[javac]
C:\p4clients\main_codeline\opensource\java\engine\org\apache\derby\iapi\sql\dictionary\PermissionsDescriptor.java:84:
cannot assign a value to final variable grantee
[javac] this.grantee = grantee;
[javac] ^
Looks like this is related to the following diff from svn 425116:
[EMAIL PROTECTED] wrote:
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=425116&r1=425115&r2=425116&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 09:50:09 2006
@@ -34,10 +34,10 @@
implements Cloneable, Provider
{
protected UUID oid;
- protected String grantee;
- protected String grantor;
+ private final String grantee;
+ private String grantor;
- public PermissionsDescriptor( DataDictionary dd,
+ PermissionsDescriptor( DataDictionary dd,
String
grantee,
String
grantor)
{
My client was synced as recently as possible when I sent this:
svn update
Fetching external item into 'tools\testing\derby\10.1'
External at revision 425119.
At revision 425119.
Army