[hibernate-commits] Hibernate SVN: r17135 - jpa-api/trunk/src/main/java/javax/persistence/criteria.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Jul 17 12:54:42 EDT 2009


Author: steve.ebersole at jboss.com
Date: 2009-07-17 12:54:42 -0400 (Fri, 17 Jul 2009)
New Revision: 17135

Modified:
   jpa-api/trunk/src/main/java/javax/persistence/criteria/CompoundSelection.java
Log:
getSelectionItems() supposedly going away

Modified: jpa-api/trunk/src/main/java/javax/persistence/criteria/CompoundSelection.java
===================================================================
--- jpa-api/trunk/src/main/java/javax/persistence/criteria/CompoundSelection.java	2009-07-17 16:52:02 UTC (rev 17134)
+++ jpa-api/trunk/src/main/java/javax/persistence/criteria/CompoundSelection.java	2009-07-17 16:54:42 UTC (rev 17135)
@@ -2,19 +2,10 @@
 // EJB3 Specification Copyright 2004-2009 Sun Microsystems, Inc.
 package javax.persistence.criteria;
 
-import java.util.List;
-
 /**
  * The CompoundSelection interface defines compound selection item
  * (tuple, array, or result of constructor).
  * @param <X> the type of the selection item
  */
 public interface CompoundSelection<X> extends Selection<X> {
-
-    /**
-     * Return a selection items that were composed to form
-     * the compound selection.
-     * @return list of selection items
-     */
-    List<Selection<?>> getSelectionItems();
 }
\ No newline at end of file



More information about the hibernate-commits mailing list