Commit 32c2eb86598b1c5bd28e6fc3b8d2213abdd52b73

Authored by Mickael Boiziot
1 parent 742248b1
Exists in master and in 1 other branch b6.0.X

Remove trailing whitespace

src/main/java/eu/omp/irap/vespa/votable/utils/Network.java
@@ -107,15 +107,15 @@ public class Network { @@ -107,15 +107,15 @@ public class Network {
107 */ 107 */
108 public static String saveQuery(String url) throws CantSendQueryException { 108 public static String saveQuery(String url) throws CantSendQueryException {
109 return saveQuery(url, "epnTapLib", ".xml"); 109 return saveQuery(url, "epnTapLib", ".xml");
110 - 110 +
111 } 111 }
112 - 112 +
113 /** 113 /**
114 * Send a query and save the result in a temporary file. 114 * Send a query and save the result in a temporary file.
115 * 115 *
116 * @param url The URL of the query 116 * @param url The URL of the query
117 * @param prefix The prefix name of the temporary file 117 * @param prefix The prefix name of the temporary file
118 - * @param extension The extension of the temporary file 118 + * @param extension The extension of the temporary file
119 * @return The path of the downloaded file. 119 * @return The path of the downloaded file.
120 * @throws CantSendQueryException The query can not be sent. 120 * @throws CantSendQueryException The query can not be sent.
121 */ 121 */
src/main/java/eu/omp/irap/vespa/votable/votabledata/VOTableData.java
@@ -43,7 +43,7 @@ public class VOTableData { @@ -43,7 +43,7 @@ public class VOTableData {
43 43
44 /** 44 /**
45 * Constructor of VOTableData. 45 * Constructor of VOTableData.
46 - * 46 + *
47 * @param title The title of the data set. 47 * @param title The title of the data set.
48 */ 48 */
49 public VOTableData(String title) { 49 public VOTableData(String title) {
src/main/java/eu/omp/irap/vespa/votable/votabledata/VOTableDataParser.java
@@ -52,7 +52,7 @@ public class VOTableDataParser { @@ -52,7 +52,7 @@ public class VOTableDataParser {
52 * In VOTables, data can be stored in 4 different serializations: BINARY, BINARY2, TABLEDATA and 52 * In VOTables, data can be stored in 4 different serializations: BINARY, BINARY2, TABLEDATA and
53 * FITS. This class aims to provide a unique way to get the data table, regardless of its 53 * FITS. This class aims to provide a unique way to get the data table, regardless of its
54 * serialization type. DO NOT PARSE DATA: data parsing requires parseData() call. 54 * serialization type. DO NOT PARSE DATA: data parsing requires parseData() call.
55 - * 55 + *
56 * @param datasetTitle The title of the data set. 56 * @param datasetTitle The title of the data set.
57 * @param table The table on which we want get the data. 57 * @param table The table on which we want get the data.
58 */ 58 */