commit 1398158661f0390033e5edd6b9bdae7a6c9d9a23
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Wed Nov 21 11:46:48 2018 +0000

    Small things.

diff --git a/src/main/java/org/distorted/library/main/DistortedMaster.java b/src/main/java/org/distorted/library/main/DistortedMaster.java
index 38a45fa..aaa0c96 100644
--- a/src/main/java/org/distorted/library/main/DistortedMaster.java
+++ b/src/main/java/org/distorted/library/main/DistortedMaster.java
@@ -33,17 +33,9 @@ import java.util.ArrayList;
 public class DistortedMaster
   {
   private static ArrayList<Slave> mSlaves = new ArrayList<>();
-/**
- * Not part of public API, do not document (public only because has to be used in PostprocessEffects)
- *
- * @y.exclude
- */
+
   public interface Slave
     {
-    /**
-     * Not part of public API, do not document
-     * @y.exclude
-     */
     void doWork();
     }
 
@@ -71,10 +63,7 @@ public class DistortedMaster
     }
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
-/**
- * Not part of public API, do not document
- * @y.exclude
- */
+
   public static void newSlave(Slave s)
     {
     int num = mSlaves.size();
diff --git a/src/main/java/org/distorted/library/main/DistortedObject.java b/src/main/java/org/distorted/library/main/DistortedObject.java
index e147544..5b41596 100644
--- a/src/main/java/org/distorted/library/main/DistortedObject.java
+++ b/src/main/java/org/distorted/library/main/DistortedObject.java
@@ -66,7 +66,7 @@ abstract class DistortedObject
   private static long mNextSystemID = 0;
 
   private long mID;
-  protected int mType;
+  private int mType;
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 
diff --git a/src/main/java/org/distorted/library/main/EffectQueue.java b/src/main/java/org/distorted/library/main/EffectQueue.java
index cf9bfce..5a64171 100644
--- a/src/main/java/org/distorted/library/main/EffectQueue.java
+++ b/src/main/java/org/distorted/library/main/EffectQueue.java
@@ -37,22 +37,21 @@ abstract class EffectQueue implements DistortedMaster.Slave
   private static final int DETACH = 1;
   private static final int DETALL = 2;
 
-  protected int mNumEffects;      // 'ToBe' will be more than mNumEffects if doWork() hasn't
-  protected int mNumEffectsToBe;  // added them yet (or less if it hasn't removed some yet)
-  protected float[] mUniforms;
-  protected long[] mCurrentDuration;
-  protected Effect[] mEffects;
-  protected int[] mName;
-  protected long mTime=0;
-  protected static int[] mMax = new int[EffectType.LENGTH];
-  protected ArrayList<EffectListener> mListeners =null;
-  protected int mNumListeners=0;  // ==mListeners.length(), but we only create mListeners if the first one gets added
-  protected long mDistortedEffectsID;
-
+  int mNumEffects;      // 'ToBe' will be more than mNumEffects if doWork() hasn't
+  int mNumEffectsToBe;  // added them yet (or less if it hasn't removed some yet)
+  float[] mUniforms;
+  long[] mCurrentDuration;
+  Effect[] mEffects;
+  int[] mName;
+  long mTime=0;
+  ArrayList<EffectListener> mListeners =null;
+  int mNumListeners=0;  // ==mListeners.length(), but we only create mListeners if the first one gets added
+  long mDistortedEffectsID;
+
+  private static int[] mMax = new int[EffectType.LENGTH];
   private static long mNextID;
   private static HashMap<ArrayList<Long>,Long> mMapID = new HashMap<>(); // maps lists of Effect IDs (longs) to a
                                                                          // single long - the queue ID.
-
   private ArrayList<DistortedNode> mNodes = null;
   private long mID;
   private static boolean mCreated;
