MAILBOX-332 Fix typo

Project: http://git-wip-us.apache.org/repos/asf/james-project/repo
Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/0a393f69
Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/0a393f69
Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/0a393f69

Branch: refs/heads/master
Commit: 0a393f693e47e15ee02c56f8b7115fd4a27f44e5
Parents: c76a4ec
Author: benwa <btell...@linagora.com>
Authored: Wed May 9 16:46:03 2018 +0700
Committer: benwa <btell...@linagora.com>
Committed: Thu May 10 09:15:41 2018 +0700

----------------------------------------------------------------------
 .../org/apache/james/mailbox/quota/model/HistoryEvolution.java   | 2 +-
 .../apache/james/mailbox/quota/model/QuotaThresholdHistory.java  | 4 ++--
 .../quota/mailing/subscribers/QuotaThresholdNoticeTest.java      | 4 ++--
 .../apache/james/mailbox/quota/model/HistoryEvolutionTest.java   | 4 ++--
 .../james/mailbox/quota/model/QuotaThresholdHistoryTest.java     | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/james-project/blob/0a393f69/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/HistoryEvolution.java
----------------------------------------------------------------------
diff --git 
a/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/HistoryEvolution.java
 
b/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/HistoryEvolution.java
index 7f71025..49db1ee 100644
--- 
a/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/HistoryEvolution.java
+++ 
b/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/HistoryEvolution.java
@@ -51,7 +51,7 @@ public class HistoryEvolution {
     }
 
     public enum HighestThresholdRecentness {
-        AlreadyReachedDuringGracePriod,
+        AlreadyReachedDuringGracePeriod,
         NotAlreadyReachedDuringGracePeriod
     }
 

http://git-wip-us.apache.org/repos/asf/james-project/blob/0a393f69/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistory.java
----------------------------------------------------------------------
diff --git 
a/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistory.java
 
b/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistory.java
index 2e3d551..6002591 100644
--- 
a/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistory.java
+++ 
b/mailbox/plugin/quota-mailing/src/main/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistory.java
@@ -19,7 +19,7 @@
 
 package org.apache.james.mailbox.quota.model;
 
-import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePriod;
+import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePeriod;
 import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.NotAlreadyReachedDuringGracePeriod;
 
 import java.time.Duration;
@@ -70,7 +70,7 @@ public class QuotaThresholdHistory {
             return HistoryEvolution.noChanges();
         }
         return recentlyExceededQuotaThreshold(thresholdChange, gracePeriod)
-                .map(any -> 
HistoryEvolution.higherThresholdReached(thresholdChange, 
AlreadyReachedDuringGracePriod))
+                .map(any -> 
HistoryEvolution.higherThresholdReached(thresholdChange, 
AlreadyReachedDuringGracePeriod))
                 
.orElse(HistoryEvolution.higherThresholdReached(thresholdChange, 
NotAlreadyReachedDuringGracePeriod));
     }
 

http://git-wip-us.apache.org/repos/asf/james-project/blob/0a393f69/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/mailing/subscribers/QuotaThresholdNoticeTest.java
----------------------------------------------------------------------
diff --git 
a/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/mailing/subscribers/QuotaThresholdNoticeTest.java
 
b/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/mailing/subscribers/QuotaThresholdNoticeTest.java
index e652e0b..03c2ea2 100644
--- 
a/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/mailing/subscribers/QuotaThresholdNoticeTest.java
+++ 
b/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/mailing/subscribers/QuotaThresholdNoticeTest.java
@@ -19,7 +19,7 @@
 
 package org.apache.james.mailbox.quota.mailing.subscribers;
 
-import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePriod;
+import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePeriod;
 import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.NotAlreadyReachedDuringGracePeriod;
 import static 
org.apache.james.mailbox.quota.model.QuotaThresholdFixture.TestConstants.NOW;
 import static org.apache.james.mailbox.quota.model.QuotaThresholdFixture._80;
@@ -81,7 +81,7 @@ class QuotaThresholdNoticeTest {
         assertThat(QuotaThresholdNotice.builder()
             .sizeQuota(Sizes._82_PERCENT)
             .countQuota(Counts._82_PERCENT)
-            .sizeThreshold(HistoryEvolution.higherThresholdReached(new 
QuotaThresholdChange(_80, NOW), AlreadyReachedDuringGracePriod))
+            .sizeThreshold(HistoryEvolution.higherThresholdReached(new 
QuotaThresholdChange(_80, NOW), AlreadyReachedDuringGracePeriod))
             .build())
             .isEmpty();
     }

http://git-wip-us.apache.org/repos/asf/james-project/blob/0a393f69/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/HistoryEvolutionTest.java
----------------------------------------------------------------------
diff --git 
a/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/HistoryEvolutionTest.java
 
b/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/HistoryEvolutionTest.java
index 566991c..2855e6f 100644
--- 
a/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/HistoryEvolutionTest.java
+++ 
b/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/HistoryEvolutionTest.java
@@ -57,7 +57,7 @@ class HistoryEvolutionTest {
     @Test
     void 
isModifiedShouldReturnTrueWhenHigherThresholdAlreadyReachedWithinGracePeriod() {
         assertThat(
-            HistoryEvolution.higherThresholdReached(SAMPLE_THRESHOLD, 
HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePriod)
+            HistoryEvolution.higherThresholdReached(SAMPLE_THRESHOLD, 
HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePeriod)
                 .isChange())
             .isTrue();
     }
@@ -89,7 +89,7 @@ class HistoryEvolutionTest {
     @Test
     void 
currentThresholdNotRecentlyReachedShouldReturnFalseWhenHigherThresholdReachedAlreadyReachedWithinGracePeriod()
 {
         assertThat(
-            HistoryEvolution.higherThresholdReached(SAMPLE_THRESHOLD, 
HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePriod)
+            HistoryEvolution.higherThresholdReached(SAMPLE_THRESHOLD, 
HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePeriod)
                 .currentThresholdNotRecentlyReached())
             .isFalse();
     }

http://git-wip-us.apache.org/repos/asf/james-project/blob/0a393f69/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistoryTest.java
----------------------------------------------------------------------
diff --git 
a/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistoryTest.java
 
b/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistoryTest.java
index 9ea774d..a4bf51c 100644
--- 
a/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistoryTest.java
+++ 
b/mailbox/plugin/quota-mailing/src/test/java/org/apache/james/mailbox/quota/model/QuotaThresholdHistoryTest.java
@@ -19,7 +19,7 @@
 
 package org.apache.james.mailbox.quota.model;
 
-import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePriod;
+import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.AlreadyReachedDuringGracePeriod;
 import static 
org.apache.james.mailbox.quota.model.HistoryEvolution.HighestThresholdRecentness.NotAlreadyReachedDuringGracePeriod;
 import static 
org.apache.james.mailbox.quota.model.QuotaThresholdFixture.TestConstants.GRACE_PERIOD;
 import static 
org.apache.james.mailbox.quota.model.QuotaThresholdFixture.TestConstants.NOW;
@@ -81,7 +81,7 @@ public class QuotaThresholdHistoryTest {
                     new QuotaThresholdChange(_75, 
NOW.minus(Duration.ofHours(12))),
                     new QuotaThresholdChange(_50, 
NOW.minus(Duration.ofHours(6))))
                 .compareWithCurrentThreshold(new QuotaThresholdChange(_75, 
NOW), GRACE_PERIOD))
-            .isEqualTo(HistoryEvolution.higherThresholdReached(new 
QuotaThresholdChange(_75, NOW), AlreadyReachedDuringGracePriod));
+            .isEqualTo(HistoryEvolution.higherThresholdReached(new 
QuotaThresholdChange(_75, NOW), AlreadyReachedDuringGracePeriod));
     }
 
 }
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org

Reply via email to