[jboss-cvs] javassist/src/main/javassist/bytecode ...

Shigeru Chiba chiba at is.titech.ac.jp
Fri Jul 27 02:48:40 EDT 2007


  User: chiba   
  Date: 07/07/27 02:48:40

  Modified:    src/main/javassist/bytecode  SignatureAttribute.java
  Log:
  I will release 3.6.0.CR1
  
  Revision  Changes    Path
  1.11      +4 -4      javassist/src/main/javassist/bytecode/SignatureAttribute.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SignatureAttribute.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/bytecode/SignatureAttribute.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- SignatureAttribute.java	4 Jun 2007 03:11:09 -0000	1.10
  +++ SignatureAttribute.java	27 Jul 2007 06:48:40 -0000	1.11
  @@ -287,14 +287,14 @@
           /**
            * Returns the kind of this type argument.
            *
  -         * @return ' ' (not-wildcard), '*' (wildcard), '+' (wildcard with
  -         * upper bound), or '-' (wildcard with lower bound). 
  +         * @return <code>' '</code> (not-wildcard), <code>'*'</code> (wildcard), <code>'+'</code> (wildcard with
  +         * upper bound), or <code>'-'</code> (wildcard with lower bound). 
            */
           public char getKind() { return wildcard; }
   
           /**
  -         * Returns true if this type argument is a wildcard type such as
  -         * ?, ? extends String, or ? super Integer.
  +         * Returns true if this type argument is a wildcard type
  +         * such as <code>?</code>, <code>? extends String</code>, or <code>? super Integer</code>.
            */
           public boolean isWildcard() { return wildcard != ' '; }
   
  
  
  



More information about the jboss-cvs-commits mailing list