|
From: Peter C. <cen...@cm...> - 2004-04-11 05:50:37
|
Hi fellow hackers,
There appears to be an inconsistency in the current CVS. After a CVS
update and clean recompile of the whole project, I get this:
do-compile:
[javac] Compiling 357 source files to
/Users/centgraf/Documents/Rice/Comp312/cvs/built
[javac]
/Users/centgraf/Documents/Rice/Comp312/cvs/src/edu/rice/cs/drjava/
model/repl/IdentityVisitor.java:63:
edu.rice.cs.drjava.model.repl.IdentityVisitor is not abstract and does
not override abstract method
visit(koala.dynamicjava.tree.ForEachStatement) in
koala.dynamicjava.tree.visitor.Visitor
[javac] public class IdentityVisitor implements Visitor<Node> {
[javac] ^
[javac] Note: * uses or overrides a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 1 error
If I build a new jar from our DynamicJava CVS and use that, I get
different errors:
do-compile:
[javac] Compiling 357 source files to
/Users/centgraf/Documents/Rice/Comp312/cvs/built
[javac]
/Users/centgraf/Documents/Rice/Comp312/cvs/src/edu/rice/cs/drjava/
model/repl/TypeCheckerExtension.java:217: cannot find symbol
[javac] symbol : method
visitNumericExpression(koala.dynamicjava.tree.DivideExpression,java.lang
.String)
[javac] location: class
edu.rice.cs.drjava.model.repl.TypeCheckerExtension
[javac] Class c = visitNumericExpression(node, "division.type");
[javac] ^
[javac]
/Users/centgraf/Documents/Rice/Comp312/cvs/src/edu/rice/cs/drjava/
model/repl/TypeCheckerExtension.java:230: cannot find symbol
[javac] symbol : method
visitNumericExpression(koala.dynamicjava.tree.RemainderExpression,java.l
ang.String)
[javac] location: class
edu.rice.cs.drjava.model.repl.TypeCheckerExtension
[javac] Class c = visitNumericExpression(node,
"remainder.type");
[javac] ^
[javac] Note: * uses or overrides a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 2 errors
Could whoever has been modifying these classes please fix this? I
would like to add nice default toString behavior for the interactions
pane based on Jakarta Commons Lang ReflectionToString, but can't build.
:-(
--
Peter
|