Skip to content

Commit d64f0d7

Browse files
Cleanup
1 parent 27596cd commit d64f0d7

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

spring-data-eclipse-store/src/main/java/software/xdev/spring/data/eclipse/store/repository/support/copier/object/EclipseSerializerRegisteringCopier.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ private void lazyInit()
105105
* A storer is created. Then a loader. By then calling {@link PersistenceStorer#store(Object)} the source-object is
106106
* serialized in memory. Then the created objects are put in a Map which holds the EclipseStore-ObjectId and all
107107
* the
108-
* serialized objects. By calling {@link PersistenceLoader#get()} the serilized objects are deserialized. Then we
109-
* iterate over the deserlized objects and pair them with the corresponding source-objects through the
108+
* serialized objects. By calling {@link PersistenceLoader#get()} the serialized objects are deserialized. Then we
109+
* iterate over the deserialized objects and pair them with the corresponding source-objects through the
110110
* EclipseStore-ObjectId.
111111
* </p>
112112
*/
@@ -182,7 +182,7 @@ public void incrementCopiedObjectsCount()
182182
this.copiedObjectsCount += 1;
183183
}
184184

185-
public void incrementRegisteredObjectsCountt()
185+
public void incrementRegisteredObjectsCount()
186186
{
187187
this.registeredObjectsCount += 1;
188188
}

spring-data-eclipse-store/src/test/java/software/xdev/spring/data/eclipse/store/integration/isolated/tests/special/types/TypesData.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
import software.xdev.spring.data.eclipse.store.repository.interfaces.EclipseStoreRepository;
5050

5151

52-
public final class TypesData
52+
final class TypesData
5353
{
5454
public record ListOfTestArguments(List<TestArguments<?>> testArguments)
5555
{
@@ -71,6 +71,7 @@ public Arguments toArguments()
7171
}
7272
}
7373

74+
@SuppressWarnings("checkstyle:MethodLength")
7475
public static Stream<Arguments> generateData()
7576
{
7677
// noinspection RedundantTypeArguments (explicit type arguments speedup compilation and analysis time)

0 commit comments

Comments
 (0)