From b1b76f2019a9daca1b16166adb898d7712a10bf9 Mon Sep 17 00:00:00 2001 From: Jerzy Kwiatkowski <33574230+jKiler@users.noreply.github.com> Date: Tue, 23 Apr 2019 16:20:17 +0200 Subject: [PATCH] DATACMNS-1520 - Fix typo in Javadoc. Original pull request: #393. --- .../org/springframework/data/web/PagedResourcesAssembler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/web/PagedResourcesAssembler.java b/src/main/java/org/springframework/data/web/PagedResourcesAssembler.java index b47405efb..df3ee2f28 100644 --- a/src/main/java/org/springframework/data/web/PagedResourcesAssembler.java +++ b/src/main/java/org/springframework/data/web/PagedResourcesAssembler.java @@ -144,7 +144,7 @@ public class PagedResourcesAssembler implements ResourceAssembler, Pa */ public PagedResources toEmptyResource(Page page, Class type, Link link) { - Assert.notNull(page, "Page must must not be null!"); + Assert.notNull(page, "Page must not be null!"); Assert.isTrue(!page.hasContent(), "Page must not have any content!"); Assert.notNull(type, "Type must not be null!");