|
From: Bryan T. <tho...@us...> - 2007-03-15 16:11:58
|
Update of /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11466/src/java/com/bigdata/rdf Modified Files: TripleStore.java Log Message: Refactoring to define service apis (data service, transaction manager service) and some approximate implementations of those services (not supporting service discovery, network protocol, or service robustness). Copied in the UML model so that it will actually get committed to CVS.... Index: TripleStore.java =================================================================== RCS file: /cvsroot/cweb/bigdata-rdf/src/java/com/bigdata/rdf/TripleStore.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** TripleStore.java 11 Mar 2007 11:43:32 -0000 1.22 --- TripleStore.java 15 Mar 2007 16:11:54 -0000 1.23 *************** *** 1059,1063 **** public void overflow() { ! System.err.println("*** Overflow *** "); --- 1059,1063 ---- public void overflow() { ! System.err.println("*** Overflow *** "); *************** *** 1073,1076 **** --- 1073,1077 ---- this.counter = null; + // invoke the base behavior on the super class. super.overflow(); |