Author: jfuerth
Date: Fri Jun 12 13:49:50 2009
New Revision: 3090

Modified:
   trunk/src/ca/sqlpower/architect/swingui/PlayPen.java

Log:
Un-deprecating two methods that are not entirely useless: they perform a typecast on the result of a more generic method.

Modified: trunk/src/ca/sqlpower/architect/swingui/PlayPen.java
==============================================================================
--- trunk/src/ca/sqlpower/architect/swingui/PlayPen.java        (original)
+++ trunk/src/ca/sqlpower/architect/swingui/PlayPen.java Fri Jun 12 13:49:50 2009
@@ -1116,7 +1116,6 @@
         * @return A reference to the TablePane that has t as a model, or
         * null if no such TablePane is in the play pen.
         */
-       @Deprecated
        public TablePane findTablePane(SQLTable t) {
                return (TablePane) findPPComponent(t);
        }
@@ -1172,7 +1171,6 @@
         * @return A reference to the Relationsip that has r as a model, or
         * null if no such Relationship is in the play pen.
         */
-       @Deprecated
        public Relationship findRelationship(SQLRelationship r) {
                return (Relationship) findPPComponent(r);
        }

Reply via email to