move meta.g into src/, cleanup
[sbp.git] / src / edu / berkeley / sbp / meta / Repeat.java
index bbf800a..a97eb38 100644 (file)
@@ -12,7 +12,7 @@ import java.lang.ref.*;
  *  Currently this class exports only static methods to create repetitions;
  *  there are no public instance methods or constructors
  */
-public class Repeat extends Union {
+class Repeat extends Union {
 
     public Repeat(final Element e, boolean zeroOkay, boolean manyOkay, Object tag) {
         this(e, zeroOkay, manyOkay, null, false, tag); }