Commit 6beb5a94 authored by Grégory Mantelet's avatar Grégory Mantelet
Browse files

[TAP] Fix typo for the automatic ADQL query fix.

parent 6470ccd2
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -417,7 +417,7 @@ public class VOTableFormat implements OutputFormat {


		// Append the fixed ADQL query, if any:	[OPTIONAL]
		// Append the fixed ADQL query, if any:	[OPTIONAL]
		String fixedQuery = execReport.fixedQuery;
		String fixedQuery = execReport.fixedQuery;
		if (adqlQuery != null){
		if (fixedQuery != null){
			out.write("<INFO name=\"QUERY_AFTER_AUTO_FIX\"" + VOSerializer.formatAttribute("value", fixedQuery) + "/>");
			out.write("<INFO name=\"QUERY_AFTER_AUTO_FIX\"" + VOSerializer.formatAttribute("value", fixedQuery) + "/>");
			out.newLine();
			out.newLine();
		}
		}