diff options
Diffstat (limited to 'src/sdp/meta/conf_make_meta_toml.d')
-rw-r--r-- | src/sdp/meta/conf_make_meta_toml.d | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/sdp/meta/conf_make_meta_toml.d b/src/sdp/meta/conf_make_meta_toml.d index 4390c5c..d434f00 100644 --- a/src/sdp/meta/conf_make_meta_toml.d +++ b/src/sdp/meta/conf_make_meta_toml.d @@ -64,9 +64,7 @@ static template docHeaderMakeAndMetaTupTomlExtractAndConvertToStruct() { Src header_src, ) { TOMLDocument _doc; - if (header_src.match(rgx.sdlang_header_meta_title)) { - writeln("WARNING >>> document header is sdlang (in wrong location JSON)"); - } else if (header_src.match(rgx.toml_header_meta_title)) { + if (header_src.match(rgx.toml_header_meta_title)) { debug (json) { writeln(">>> document header is toml, convert to JSON"); } |