Commit 32c2eb86598b1c5bd28e6fc3b8d2213abdd52b73
1 parent
742248b1
Exists in
master
and in
1 other branch
Remove trailing whitespace
Showing
3 changed files
with
5 additions
and
5 deletions
Show diff stats
src/main/java/eu/omp/irap/vespa/votable/utils/Network.java
... | ... | @@ -107,15 +107,15 @@ public class Network { |
107 | 107 | */ |
108 | 108 | public static String saveQuery(String url) throws CantSendQueryException { |
109 | 109 | return saveQuery(url, "epnTapLib", ".xml"); |
110 | - | |
110 | + | |
111 | 111 | } |
112 | - | |
112 | + | |
113 | 113 | /** |
114 | 114 | * Send a query and save the result in a temporary file. |
115 | 115 | * |
116 | 116 | * @param url The URL of the query |
117 | 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 | 119 | * @return The path of the downloaded file. |
120 | 120 | * @throws CantSendQueryException The query can not be sent. |
121 | 121 | */ | ... | ... |
src/main/java/eu/omp/irap/vespa/votable/votabledata/VOTableData.java
src/main/java/eu/omp/irap/vespa/votable/votabledata/VOTableDataParser.java
... | ... | @@ -52,7 +52,7 @@ public class VOTableDataParser { |
52 | 52 | * In VOTables, data can be stored in 4 different serializations: BINARY, BINARY2, TABLEDATA and |
53 | 53 | * FITS. This class aims to provide a unique way to get the data table, regardless of its |
54 | 54 | * serialization type. DO NOT PARSE DATA: data parsing requires parseData() call. |
55 | - * | |
55 | + * | |
56 | 56 | * @param datasetTitle The title of the data set. |
57 | 57 | * @param table The table on which we want get the data. |
58 | 58 | */ | ... | ... |