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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);