Update of /cvsroot/pfc-prolog/prolix/src/org/asturlinux/frade/dummy
In directory sc8-pr-cvs1:/tmp/cvs-serv14826/src/org/asturlinux/frade/dummy
Modified Files:
TreeElementDummy.java
Log Message:
Refactored concatenation with StringWriters and visitor
Index: TreeElementDummy.java
===================================================================
RCS file: /cvsroot/pfc-prolog/prolix/src/org/asturlinux/frade/dummy/TreeElementDummy.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TreeElementDummy.java 13 Jul 2003 20:46:25 -0000 1.1
--- TreeElementDummy.java 19 Jul 2003 19:37:51 -0000 1.2
***************
*** 34,38 ****
private boolean iAmSolution = false;
private TreeElementDummy _parent;
! private TreeElementDummy[] _sons;
private Substitution[] _substitutions = null;
--- 34,38 ----
private boolean iAmSolution = false;
private TreeElementDummy _parent;
! private TreeElementDummy[] _sons = new TreeElementDummy[0];
private Substitution[] _substitutions = null;
|