From: <one...@us...> - 2002-12-25 07:06:13
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate In directory sc8-pr-cvs1:/tmp/cvs-serv20032/hibernate Modified Files: FlushMode.java Log Message: removed unnecessary code Index: FlushMode.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/FlushMode.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FlushMode.java 15 Dec 2002 10:51:31 -0000 1.1 --- FlushMode.java 25 Dec 2002 07:06:08 -0000 1.2 *************** *** 26,41 **** } /** - * Does this mode flush more often than the given flush mode? - */ - public boolean greaterThan(FlushMode mode) { - return level > mode.level; - } - /** - * Does this mode flush less often than the given flush mode? - */ - public boolean lessThan(FlushMode mode) { - return level < mode.level; - } - /** * The <tt>Session</tt> is never flushed unless <tt>flush()</tt> * is explicitly called by the application. This mode is very --- 26,29 ---- |