View | Details | Raw Unified | Return to bug 59451
Collapse All | Expand All

(-)java/org/apache/tomcat/util/buf/MessageBytes.java (-2 / +2 lines)
Lines 44-53 Link Here
44
    /** getType() is T_STR if the the object used to create the MessageBytes
44
    /** getType() is T_STR if the the object used to create the MessageBytes
45
        was a String */
45
        was a String */
46
    public static final int T_STR  = 1;
46
    public static final int T_STR  = 1;
47
    /** getType() is T_STR if the the object used to create the MessageBytes
47
    /** getType() is T_BYTES if the the object used to create the MessageBytes
48
        was a byte[] */
48
        was a byte[] */
49
    public static final int T_BYTES = 2;
49
    public static final int T_BYTES = 2;
50
    /** getType() is T_STR if the the object used to create the MessageBytes
50
    /** getType() is T_CHARS if the the object used to create the MessageBytes
51
        was a char[] */
51
        was a char[] */
52
    public static final int T_CHARS = 3;
52
    public static final int T_CHARS = 3;
53
53

Return to bug 59451