From 668cbf5fda7b5ebbe3a8a59ed71e181bd814d1bb Mon Sep 17 00:00:00 2001 From: Sankate Sharma Date: Mon, 18 May 2015 10:37:49 -0700 Subject: [PATCH] DATAJPA-796 - Fix Java doc comment in AbstractPersistable. --- .../springframework/data/jpa/domain/AbstractPersistable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/jpa/domain/AbstractPersistable.java b/src/main/java/org/springframework/data/jpa/domain/AbstractPersistable.java index 8520ace7e..8d82f84d7 100644 --- a/src/main/java/org/springframework/data/jpa/domain/AbstractPersistable.java +++ b/src/main/java/org/springframework/data/jpa/domain/AbstractPersistable.java @@ -1,5 +1,5 @@ /* - * Copyright 2008-2014 the original author or authors. + * Copyright 2008-2015 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. @@ -30,7 +30,7 @@ import org.springframework.data.domain.Persistable; * * @author Oliver Gierke * @author Thomas Darimont - * @param the the of the entity + * @param the type of the identifier. */ @MappedSuperclass public abstract class AbstractPersistable implements Persistable {