diff --git a/src/main/java/org/springframework/data/domain/PageImpl.java b/src/main/java/org/springframework/data/domain/PageImpl.java index 9c87a3a4d..d3e9db177 100644 --- a/src/main/java/org/springframework/data/domain/PageImpl.java +++ b/src/main/java/org/springframework/data/domain/PageImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2008-2014 the original author or authors. + * Copyright 2008-2016 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. @@ -118,7 +118,7 @@ public class PageImpl extends Chunk implements Page { contentType = content.get(0).getClass().getName(); } - return String.format("Page %s of %d containing %s instances", getNumber()+1, getTotalPages(), contentType); + return String.format("Page %s of %d containing %s instances", getNumber() + 1, getTotalPages(), contentType); } /*