Просмотр исходного кода

Merge pull request #28 from llissery/master

  Upgrade to Spring Boot 1.5.10
mackos 8 лет назад
Родитель
Сommit
700be64d6f
Аккаунт пользователя с таким Email не найден
2 измененных файлов: 2 добавлений и 2 удалений
  1. 1
    1
      pom.xml
  2. 1
    1
      src/main/java/se/citerus/dddsample/domain/shared/Entity.java

+ 1
- 1
pom.xml Просмотреть файл

@@ -8,7 +8,7 @@
8 8
     <parent>
9 9
         <groupId>org.springframework.boot</groupId>
10 10
         <artifactId>spring-boot-starter-parent</artifactId>
11
-        <version>1.5.9.RELEASE</version>
11
+        <version>1.5.10.RELEASE</version>
12 12
     </parent>
13 13
     <description>This application shows a few key concepts of
14 14
         Domain Driven Design implemented in Enterprise Java.

+ 1
- 1
src/main/java/se/citerus/dddsample/domain/shared/Entity.java Просмотреть файл

@@ -10,7 +10,7 @@ public interface Entity<T> {
10 10
    * Entities compare by identity, not by attributes.
11 11
    *
12 12
    * @param other The other entity.
13
-   * @return true if the identities are the same, regardles of other attributes.
13
+   * @return true if the identities are the same, regardless of other attributes.
14 14
    */
15 15
   boolean sameIdentityAs(T other);
16 16