You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by jm...@apache.org on 2002/12/02 03:58:19 UTC

cvs commit: jakarta-turbine-torque/src/java/org/apache/torque/util BasePeer.java

jmcnally    2002/12/01 18:58:19

  Modified:    src/java/org/apache/torque/util BasePeer.java
  Log:
  patch by Scott Eade to make the methods introduced by his earlier patch package private.
  
  Revision  Changes    Path
  1.55      +3 -3      jakarta-turbine-torque/src/java/org/apache/torque/util/BasePeer.java
  
  Index: BasePeer.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/src/java/org/apache/torque/util/BasePeer.java,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- BasePeer.java	28 Nov 2002 16:32:36 -0000	1.54
  +++ BasePeer.java	2 Dec 2002 02:58:18 -0000	1.55
  @@ -908,7 +908,7 @@
        * @param criteria A Criteria.
        * @exception TorqueException Trouble creating the query string.
        */
  -    public static String createQueryDisplayString(Criteria criteria)
  +    static String createQueryDisplayString(Criteria criteria)
           throws TorqueException
       {
           return createQuery(criteria).toString();
  @@ -958,7 +958,7 @@
        * @param criteria A Criteria.
        * @exception TorqueException Trouble creating the query string.
        */
  -    public static Query createQuery(Criteria criteria)
  +    static Query createQuery(Criteria criteria)
           throws TorqueException
       {
           Query query = new Query();