Fix unexpected text error in javadoc by replacing url with html tag (#6279)

This commit is contained in:
Gökberk Karaca
2017-08-11 03:50:36 +03:00
committed by wing328
parent adfe4b6e6c
commit b0333af8bd
21 changed files with 26 additions and 26 deletions

View File

@@ -57,7 +57,7 @@ public class {{classname}} {
{{/isDeprecated}} {{/isDeprecated}}
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException { public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException {

View File

@@ -32,7 +32,7 @@ public interface {{classname}} extends ApiClient.Api {
{{/returnType}} {{/returnType}}
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
@RequestLine("{{httpMethod}} {{{path}}}{{#hasQueryParams}}?{{/hasQueryParams}}{{#queryParams}}{{baseName}}={{=<% %>=}}{<%paramName%>}<%={{ }}=%>{{#hasMore}}&{{/hasMore}}{{/queryParams}}") @RequestLine("{{httpMethod}} {{{path}}}{{#hasQueryParams}}?{{/hasQueryParams}}{{#queryParams}}{{baseName}}={{=<% %>=}}{<%paramName%>}<%={{ }}=%>{{#hasMore}}&{{/hasMore}}{{/queryParams}}")
@@ -70,7 +70,7 @@ public interface {{classname}} extends ApiClient.Api {
{{/returnType}} {{/returnType}}
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
@RequestLine("{{httpMethod}} {{{path}}}?{{#queryParams}}{{baseName}}={{=<% %>=}}{<%paramName%>}<%={{ }}=%>{{#hasMore}}&{{/hasMore}}{{/queryParams}}") @RequestLine("{{httpMethod}} {{{path}}}?{{#queryParams}}{{baseName}}={{=<% %>=}}{<%paramName%>}<%={{ }}=%>{{#hasMore}}&{{/hasMore}}{{/queryParams}}")

View File

@@ -54,7 +54,7 @@ public class {{classname}} {
{{/isDeprecated}} {{/isDeprecated}}
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException { public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException {

View File

@@ -72,7 +72,7 @@ public class {{classname}} {
* @throws ApiException If fail to serialize the request body object * @throws ApiException If fail to serialize the request body object
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public com.squareup.okhttp.Call {{operationId}}Call({{#allParams}}{{{dataType}}} {{paramName}}, {{/allParams}}final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { public com.squareup.okhttp.Call {{operationId}}Call({{#allParams}}{{{dataType}}} {{paramName}}, {{/allParams}}final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
@@ -177,7 +177,7 @@ public class {{classname}} {
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException { public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException {
@@ -193,7 +193,7 @@ public class {{classname}} {
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public ApiResponse<{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}Void{{/returnType}}> {{operationId}}WithHttpInfo({{#allParams}}{{#useBeanValidation}}{{>beanValidationQueryParams}}{{/useBeanValidation}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException { public ApiResponse<{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}Void{{/returnType}}> {{operationId}}WithHttpInfo({{#allParams}}{{#useBeanValidation}}{{>beanValidationQueryParams}}{{/useBeanValidation}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException {
@@ -211,7 +211,7 @@ public class {{classname}} {
* @throws ApiException If fail to process the API call, e.g. serializing the request body object * @throws ApiException If fail to process the API call, e.g. serializing the request body object
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public com.squareup.okhttp.Call {{operationId}}Async({{#allParams}}{{{dataType}}} {{paramName}}, {{/allParams}}final ApiCallback<{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}Void{{/returnType}}> {{localVariablePrefix}}callback) throws ApiException { public com.squareup.okhttp.Call {{operationId}}Async({{#allParams}}{{{dataType}}} {{paramName}}, {{/allParams}}final ApiCallback<{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}Void{{/returnType}}> {{localVariablePrefix}}callback) throws ApiException {

View File

@@ -50,7 +50,7 @@ public class {{classname}} {
{{/isDeprecated}} {{/isDeprecated}}
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException { public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException {

View File

@@ -57,7 +57,7 @@ public class {{classname}} {
{{/returnType}} * @throws RestClientException if an error occurs while attempting to invoke the API {{/returnType}} * @throws RestClientException if an error occurs while attempting to invoke the API
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws RestClientException { public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws RestClientException {

View File

@@ -31,7 +31,7 @@ public interface {{classname}} {
{{/returnType}} {{/returnType}}
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
{{#formParams}}{{#-first}} {{#formParams}}{{#-first}}
@@ -50,7 +50,7 @@ public interface {{classname}} {
* @param cb callback method * @param cb callback method
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
{{#formParams}}{{#-first}} {{#formParams}}{{#-first}}

View File

@@ -42,7 +42,7 @@ public interface {{classname}} {
* @return Call&lt;{{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}Object{{/returnType}}&gt; * @return Call&lt;{{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}Object{{/returnType}}&gt;
{{#externalDocs}} {{#externalDocs}}
* {{description}} * {{description}}
* @see {{url}} * @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}} {{/externalDocs}}
*/ */
{{#formParams}} {{#formParams}}

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -94,7 +94,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -95,7 +95,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -95,7 +95,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -95,7 +95,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization

View File

@@ -95,7 +95,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map&lt;String, Integer&gt;**](Map.md) **Map&lt;String, Integer&gt;**
### Authorization ### Authorization