Skip to content
Snippets Groups Projects
Commit 53498b2e authored by gmantele's avatar gmantele
Browse files

[TAP] Fix the /tables output: the UCD node was after UType...it should be just...

[TAP] Fix the /tables output: the UCD node was after UType...it should be just before (warning raised by TAPLint)
parent f90bce45
No related branches found
No related tags found
No related merge requests found
......@@ -590,8 +590,8 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour
writeAtt(prefix, "name", c.getADQLName(), writer);
writeAtt(prefix, "description", c.getDescription(), writer);
writeAtt(prefix, "unit", c.getUnit(), writer);
writeAtt(prefix, "utype", c.getUtype(), writer);
writeAtt(prefix, "ucd", c.getUcd(), writer);
writeAtt(prefix, "utype", c.getUtype(), writer);
if (c.getDatatype() != null){
writer.print(prefix);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment