< prev index next >

jdk/src/java.base/share/classes/sun/text/bidi/BidiRun.java

Print this page

        

@@ -53,11 +53,11 @@
  * <p>This class has no public constructor, and its members cannot be
  * modified by users.
  *
  * @see com.ibm.icu.text.Bidi
  */
-public class BidiRun {
+class BidiRun {
 
     int start;              /* first logical position of the run */
     int limit;              /* last visual position of the run +1 */
     int insertRemove;       /* if >0, flags for inserting LRM/RLM before/after run,
                                if <0, count of bidi controls within run            */

@@ -104,11 +104,11 @@
     }
 
     /**
      * Get level of run
      */
-    public byte getEmbeddingLevel()
+    byte getEmbeddingLevel()
     {
         return level;
     }
 
     /**
< prev index next >