allow compound paths in JD @By annotation
This commit is contained in:
parent
ebd72f8470
commit
f591ce1b36
|
@ -1949,7 +1949,7 @@ public class AnnotationMetaEntity extends AnnotationMeta {
|
||||||
if ( name.contains("<error>") ) {
|
if ( name.contains("<error>") ) {
|
||||||
throw new ProcessLaterException();
|
throw new ProcessLaterException();
|
||||||
}
|
}
|
||||||
return name;
|
return name.replace('.', '$'); // since the rest of the code assumes $ as the path separator
|
||||||
}
|
}
|
||||||
else if ( param != null ) {
|
else if ( param != null ) {
|
||||||
final String name = (String) castNonNull(getAnnotationValue(param, "value"));
|
final String name = (String) castNonNull(getAnnotationValue(param, "value"));
|
||||||
|
|
Loading…
Reference in New Issue