Fix Javadoc.

Fix invalid links. Replace Javadoc links to JSR-305 with code annotations.

Replace self-enclosing tags with simple ones.

See #2423
This commit is contained in:
Mark Paluch
2021-09-20 10:08:00 +02:00
parent bf3c9a5c6c
commit 9fbf39154f
53 changed files with 101 additions and 114 deletions

View File

@@ -18,7 +18,7 @@ package org.springframework.data.mapping;
import org.springframework.data.annotation.Persistent;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
@Persistent
public class Child extends PersonWithId {

View File

@@ -23,7 +23,7 @@ import java.lang.annotation.Target;
import org.springframework.data.annotation.Persistent;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.FIELD })

View File

@@ -16,7 +16,7 @@
package org.springframework.data.mapping;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
public abstract class Person {

View File

@@ -16,7 +16,7 @@
package org.springframework.data.mapping;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
@Document
public class PersonDocument extends Person {

View File

@@ -16,7 +16,7 @@
package org.springframework.data.mapping;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
@Document
public class PersonNoId extends Person {

View File

@@ -18,7 +18,7 @@ package org.springframework.data.mapping;
import org.springframework.data.annotation.Persistent;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
@Persistent
public class PersonPersistent extends PersonWithId {

View File

@@ -21,7 +21,7 @@ import org.springframework.data.annotation.Id;
import org.springframework.data.annotation.Reference;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
public class PersonWithChildren extends Person {

View File

@@ -18,7 +18,7 @@ package org.springframework.data.mapping;
import org.springframework.data.annotation.Id;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
* @author Jon Brisbin
*/
public class PersonWithId extends Person {