[Laszlo-checkins] r8601 - in openlaszlo/trunk/WEB-INF/lps/lfc: core data views

bargull@openlaszlo.org bargull at openlaszlo.org
Wed Apr 9 07:53:25 PDT 2008


Author: bargull
Date: 2008-04-09 07:53:20 -0700 (Wed, 09 Apr 2008)
New Revision: 8601

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
   openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDatapointer.lzs
   openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs
Log:
Change 20080409-bargull-0 by bargull at dell--p4--2-53 on 2008-04-09 11:54:30
    in /home/Admin/src/svn/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Remove deprecated methods

New Features:

Bugs Fixed: LPP-5731 - "Remove LzNode#deleteNode(..)"

Technical Reviewer: ptw
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
All these methods were already deprecated in lps-2.2!
LzNode: removed "deleteNode()", "setProp()"
LzView: removed "deleteView()"
LzDatapointer: no longer need to declare "deleteNode()" as overridden


Tests:



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs	2008-04-09 14:35:20 UTC (rev 8600)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs	2008-04-09 14:53:20 UTC (rev 8601)
@@ -1063,21 +1063,6 @@
 }
 
 /**
-  * @access private
-  */
-function setProp ( prop , val ){
-    if ( $debug ){
-      Debug.deprecated(this, arguments.callee, this.setAttribute);
-    }
-    this.setAttribute( prop , val );
-}
-
-/**
-  * @access private
-  */
-    //prototype._setProp = setProp;
-
-/**
   * returns the expected value for the specified property, which is the value of
   * the property after all executing animators are complete.
   *
@@ -2024,15 +2009,6 @@
 
 }
 
-/**
-  * @access private
-  */
-function deleteNode( recursiveCall = null){
-    if ( $debug ){
-      Debug.deprecated(this, arguments.callee, this.destroy);
-    }
-    this.destroy( );
-}
 //+++++ Debug stuff
 
 /**

Modified: openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDatapointer.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDatapointer.lzs	2008-04-09 14:35:20 UTC (rev 8600)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/data/LzDatapointer.lzs	2008-04-09 14:53:20 UTC (rev 8601)
@@ -1048,7 +1048,7 @@
   * has a following sibling, the pointer is repositioned at that sibling.
   * Otherwise the pointer is set to <code>null</code>.
   */
-override function deleteNode( recursiveCall = null){
+function deleteNode(){
     if ( ! this.p ) {
         if ( $debug ) {
             Debug.info("%s: p is null in %s", arguments.callee, this);

Modified: openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs	2008-04-09 14:35:20 UTC (rev 8600)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs	2008-04-09 14:53:20 UTC (rev 8601)
@@ -1297,15 +1297,6 @@
     }
 }
 
-/** @access private */
-function deleteView( recursiveCall ){
-    if ( $debug ){
-      Debug.deprecated(this, arguments.callee, this.destroy);
-    }
-    this.destroy();
-}
-
-
 /*
 // @access private
 function __LZFinishDestroyOnIdle (){



More information about the Laszlo-checkins mailing list