]> source.dussan.org Git - aspectj.git/commitdiff
need to keep Mr Build Machine happy.
authoraclement <aclement>
Thu, 23 Feb 2006 09:45:02 +0000 (09:45 +0000)
committeraclement <aclement>
Thu, 23 Feb 2006 09:45:02 +0000 (09:45 +0000)
weaver/src/org/aspectj/weaver/SimpleAnnotationValue.java

index 44e086d2842749abf35efed62a9a3d2de8f5d61f..2016849c3493e37f0457b185de694b8d05af1801 100644 (file)
@@ -55,7 +55,7 @@ public class SimpleAnnotationValue extends AnnotationValue {
                  case 'B': // byte
                          return Byte.toString(theByte);
                  case 'C': // char
-                         return Character.toString(theChar);
+                         return Character.valueOf(theChar).toString();
                  case 'D': // double
                          return Double.toString(theDouble);
                  case 'F': // float
@@ -67,7 +67,7 @@ public class SimpleAnnotationValue extends AnnotationValue {
                  case 'S': // short
                          return Short.toString(theShort);
                  case 'Z': // boolean
-                         return Boolean.toString(theBoolean);
+                         return Boolean.valueOf(theBoolean).toString();
                  case 's': // String
                          return theString;
                  default: throw new BCException("Do not understand this kind: "+valueKind);