mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-08 16:56:07 +00:00
Merge remote-tracking branch 'origin/ver/6.0.0' into ver/6.0.0
This commit is contained in:
@@ -43,7 +43,8 @@ public class MetaValuePreprocessor extends MetaPreprocessor<Meta> {
|
||||
public @NotNull <T> Result<T> process(AnnotatedType t, T c, ConfigLoader configLoader, Meta annotation, DepthTracker depthTracker) {
|
||||
if(c instanceof String) { // Can we do standard metaconfig?
|
||||
String value = ((String) c).trim();
|
||||
if(value.startsWith("$")) { // it's a meta value.
|
||||
if(value.startsWith("$") // it's a meta value.
|
||||
&& !value.startsWith("${")) { // it's not a meta string template.
|
||||
Pair<Configuration, Object> pair = getMetaValue(value.substring(1), depthTracker);
|
||||
|
||||
String configName;
|
||||
|
||||
Reference in New Issue
Block a user