commit d5e053a5656c14ae564f46e6aa6097912107d042
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Wed Jul 4 14:02:01 2018 +0100

    Remove the redundant DistortedNode.onPause()

diff --git a/src/main/java/org/distorted/library/main/Distorted.java b/src/main/java/org/distorted/library/main/Distorted.java
index b4cfdef..8698e7d 100644
--- a/src/main/java/org/distorted/library/main/Distorted.java
+++ b/src/main/java/org/distorted/library/main/Distorted.java
@@ -212,7 +212,6 @@ public class Distorted
   public static void onPause()
     {
     DistortedObject.onPause();
-    DistortedNode.onPause();
     DistortedEffects.onPause();
     }
 
diff --git a/src/main/java/org/distorted/library/main/DistortedNode.java b/src/main/java/org/distorted/library/main/DistortedNode.java
index 3a9c8b0..f0b8019 100644
--- a/src/main/java/org/distorted/library/main/DistortedNode.java
+++ b/src/main/java/org/distorted/library/main/DistortedNode.java
@@ -90,24 +90,6 @@ public class DistortedNode implements DistortedMaster.Slave
       mFBO            = null;
       }
     }
- 
-///////////////////////////////////////////////////////////////////////////////////////////////////
-
-  static synchronized void onPause()
-    {
-    NodeData data;
-
-    for (HashMap.Entry<ArrayList<Long>,NodeData> entry : mMapNodeID.entrySet())
-      {
-      data = entry.getValue();
-
-      if( data.mFBO != null )
-        {
-        data.mFBO.markForDeletion();
-        data.mFBO = null;
-        }
-      }
-    }
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 
@@ -152,7 +134,7 @@ public class DistortedNode implements DistortedMaster.Slave
       // undefined anyway (although only when postprocessing is applied).
       //
       // See the consequences in the 'Olympic' app - remove a few leaves and add them back in
-      // different order. You will see the number of renders go back to the original 14.
+      // different order. You will see the number of renders go back to the original 15.
       Collections.sort(ret);
       }
 
