Skip to content

Commit e2f8814

Browse files
committed
DATAREST-978 - Polishing.
Convert @see http://… links to valid format using @see <a href=…>…</a>.
1 parent 6bb9890 commit e2f8814

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/RepositorySchemaController.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2015 the original author or authors.
2+
* Copyright 2013-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@
3232
* @author Jon Brisbin
3333
* @author Oliver Gierke
3434
* @author Greg Turnquist
35-
* @see http://json-schema.org/
35+
* @see <a href="http://json-schema.org/">http://json-schema.org/</a>
3636
*/
3737
@BasePathAwareController
3838
class RepositorySchemaController {

spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/alps/AlpsController.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2015 the original author or authors.
2+
* Copyright 2014-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -42,7 +42,7 @@
4242
*
4343
* @author Oliver Gierke
4444
* @author Greg Turnquist
45-
* @see http://alps.io
45+
* @see <a href="http://alps.io">http://alps.io</a>
4646
*/
4747
@BasePathAwareController
4848
public class AlpsController {

spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/config/JsonPatchHandler.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 the original author or authors.
2+
* Copyright 2014-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -37,8 +37,9 @@
3737
*
3838
* @author Oliver Gierke
3939
* @author Mathias Düsterhöft
40-
* @see http://tools.ietf.org/html/rfc6902
41-
* @see http://tools.ietf.org/html/draft-ietf-appsawg-json-merge-patch-02
40+
* @see <a href="http://tools.ietf.org/html/rfc6902">http://tools.ietf.org/html/rfc6902</a>
41+
* @see <a href=
42+
* "http://tools.ietf.org/html/draft-ietf-appsawg-json-merge-patch-02">http://tools.ietf.org/html/draft-ietf-appsawg-json-merge-patch-02</a>
4243
*/
4344
class JsonPatchHandler {
4445

spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/json/JsonSchema.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2015 the original author or authors.
2+
* Copyright 2012-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -112,7 +112,8 @@ public Definitions getDefinitions() {
112112
*
113113
* @param typeInformation
114114
* @return
115-
* @see http://json-schema.org/latest/json-schema-core.html#anchor8
115+
* @see <a href=
116+
* "http://json-schema.org/latest/json-schema-core.html#anchor8">http://json-schema.org/latest/json-schema-core.html#anchor8</a>
116117
*/
117118
private static String toJsonSchemaType(TypeInformation<?> typeInformation) {
118119

0 commit comments

Comments
 (0)