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

index 2016849c3493e37f0457b185de694b8d05af1801..41dab703c7a4f40f3f600abb5f7b353655b14f0f 100644 (file)
@@ -55,7 +55,7 @@ public class SimpleAnnotationValue extends AnnotationValue {
                  case 'B': // byte
                          return Byte.toString(theByte);
                  case 'C': // char
-                         return Character.valueOf(theChar).toString();
+                         return new Character(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.valueOf(theBoolean).toString();
+                         return new Boolean(theBoolean).toString();
                  case 's': // String
                          return theString;
                  default: throw new BCException("Do not understand this kind: "+valueKind);