From 9d8a694874cd7b5101148f785dd457c52e502ddc Mon Sep 17 00:00:00 2001 From: Myrle Krantz Date: Thu, 20 Jul 2017 15:56:44 +0200 Subject: [PATCH] Fixed spelling error in comment. --- .../service/applications/IdentityServiceInitializer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/src/main/java/io/mifos/provisioner/internal/service/applications/IdentityServiceInitializer.java b/service/src/main/java/io/mifos/provisioner/internal/service/applications/IdentityServiceInitializer.java index 0fb9c70..7f60abb 100644 --- a/service/src/main/java/io/mifos/provisioner/internal/service/applications/IdentityServiceInitializer.java +++ b/service/src/main/java/io/mifos/provisioner/internal/service/applications/IdentityServiceInitializer.java @@ -149,7 +149,7 @@ public List postApplicationPermittableGroups( //You might look at this and wonder: "Why isn't she returning a stream here? She's just turning it back into //a stream on the other side..." //The answer is that you need the createOrFindPermittableGroup to be executed in the proper tenant context. If you - //return the stream, the call to createOrFindPermittableGroup will be executed when the stream is itereated over. + //return the stream, the call to createOrFindPermittableGroup will be executed when the stream is iterated over. return permittableGroups.map(x -> createOrFindPermittableGroup(identityService, x)).collect(Collectors.toList()); } catch (final Exception e) { throw new IllegalStateException(e);