summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraclement <aclement>2010-08-03 21:46:09 +0000
committeraclement <aclement>2010-08-03 21:46:09 +0000
commit0a8fc56aacd9abc1af745c1bc0162094eda7199e (patch)
tree75563d605f37f5b08b062b140c68115be0fd9f9b
parenta6e0e6b6e20137af302773daaa29302774eadaf5 (diff)
downloadaspectj-0a8fc56aacd9abc1af745c1bc0162094eda7199e.tar.gz
aspectj-0a8fc56aacd9abc1af745c1bc0162094eda7199e.zip
278496: toString modifications for expected output testing
-rw-r--r--org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java b/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java
index 2a116c9a7..d28b901b6 100644
--- a/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java
+++ b/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java
@@ -13,17 +13,17 @@ package org.aspectj.weaver;
public class EnumAnnotationValue extends AnnotationValue {
- private String type;
+ private String typeSignature;
private String value;
- public EnumAnnotationValue(String type, String value) {
+ public EnumAnnotationValue(String typeSignature, String value) {
super(AnnotationValue.ENUM_CONSTANT);
- this.type = type;
+ this.typeSignature = typeSignature;
this.value = value;
}
public String getType() {
- return type;
+ return typeSignature;
}
public String stringify() {
@@ -31,7 +31,7 @@ public class EnumAnnotationValue extends AnnotationValue {
}
public String toString() {
- return value;
+ return "E(" + typeSignature + " " + value + ")";
}
}
Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/BackgroundJob/DeleteExpiredOpenLocalEditor.php
blob: 8a20b6dfb0ce0122eae79c49a3686eebef5feb9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39