Browse Source

DATACMNS-973 - Polishing.

Convert @see http://… links to valid format using @see <a href=…>…</a>.
pull/191/head
Mark Paluch 9 years ago
parent
commit
250900efdf
  1. 4
      src/main/java/org/springframework/data/convert/ThreeTenBackPortConverters.java
  2. 2
      src/main/java/org/springframework/data/querydsl/package-info.java
  3. 6
      src/main/java/org/springframework/data/repository/query/parser/PartTree.java
  4. 4
      src/main/java/org/springframework/data/web/XmlBeamHttpMessageConverter.java

4
src/main/java/org/springframework/data/convert/ThreeTenBackPortConverters.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2015 the original author or authors.
* Copyright 2015-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -40,7 +40,7 @@ import org.threeten.bp.ZoneId; @@ -40,7 +40,7 @@ import org.threeten.bp.ZoneId;
* the classpath.
*
* @author Oliver Gierke
* @see http://www.threeten.org/threetenbp
* @see <a href="http://www.threeten.org/threetenbp">http://www.threeten.org/threetenbp</a>
* @since 1.10
*/
public abstract class ThreeTenBackPortConverters {

2
src/main/java/org/springframework/data/querydsl/package-info.java

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
/**
* Querydsl integration support classes.
*
* @see http://www.querydsl.com
* @see <a href="http://www.querydsl.com">http://www.querydsl.com</a>
*/
package org.springframework.data.querydsl;

6
src/main/java/org/springframework/data/repository/query/parser/PartTree.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2008-2016 the original author or authors.
* Copyright 2008-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -47,8 +47,8 @@ public class PartTree implements Iterable<OrPart> { @@ -47,8 +47,8 @@ public class PartTree implements Iterable<OrPart> {
* OR
* any other letter NOT in the BASIC_LATIN Uni-code Block \\P{InBASIC_LATIN} (like Chinese, Korean, Japanese, etc.).
*
* @see http://www.regular-expressions.info/unicode.html
* @see http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#ubc
* @see <a href="http://www.regular-expressions.info/unicode.html">http://www.regular-expressions.info/unicode.html</a>
* @see <a href="http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#ubc">Pattern</a>
*/
private static final String KEYWORD_TEMPLATE = "(%s)(?=(\\p{Lu}|\\P{InBASIC_LATIN}))";
private static final String QUERY_PATTERN = "find|read|get|query|stream";

4
src/main/java/org/springframework/data/web/XmlBeamHttpMessageConverter.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -35,7 +35,7 @@ import org.xmlbeam.XBProjector; @@ -35,7 +35,7 @@ import org.xmlbeam.XBProjector;
* A read-only {@link HttpMessageConverter} to create XMLBeam-based projection instances for interfaces.
*
* @author Oliver Gierke
* @see http://www.xmlbeam.org
* @see <a href="http://www.xmlbeam.org">http://www.xmlbeam.org</a>
* @soundtrack Dr. Kobayashi Maru & The Mothership Connection - Anthem (EPisode One)
*/
public class XmlBeamHttpMessageConverter extends AbstractHttpMessageConverter<Object> {

Loading…
Cancel
Save