Skip to content

Commit e5b93ab

Browse files
jimmycaseyvasile-baluta
authored andcommitted
Fixed Spelling.
Fixed Spelling.
1 parent 57dad4d commit e5b93ab

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/com/ericsson/eiffel/remrem/semantics/SemanticsService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public String generateMsg(String msgType, JsonObject bodyJson) {
196196
log.error("Could not validate message. Reason:" + e.getMessage() + "\nCause: " + e.getCause().toString());
197197
return createErrorResponse(e.getMessage(), e.getCause().toString());
198198
} catch (JsonSyntaxException e) {
199-
log.error("Json Syntax exception occured. Reason:" + e.getMessage() + "\nCause: " + e.getCause().toString());
199+
log.error("Json Syntax exception occurred. Reason:" + e.getMessage() + "\nCause: " + e.getCause().toString());
200200
return createErrorResponse("Json Syntax exception occured while processing input schema", e.getCause().toString());
201201
}
202202

src/main/java/com/ericsson/eiffel/remrem/semantics/clone/PrepareLocalEiffelSchemas.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ private void copyOperationSchemas(final String operationsRepoPath, final String
159159
try {
160160
FileUtils.copyDirectory(operationSchemas, eiffelSchemas);
161161
} catch (IOException e) {
162-
System.out.println("Exception occured while copying schemas from operations repository to eiffel repository");
162+
System.out.println("Exception occurred while copying schemas from operations repository to eiffel repository");
163163
e.printStackTrace();
164164
}
165165
}

src/test/java/com/ericsson/eiffel/remrem/semantics/ServiceTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public void testGenerate() {
103103
}
104104
}
105105
} catch (JsonIOException | JsonSyntaxException | FileNotFoundException e) {
106-
System.out.println("Exception occured while geneatring event");
106+
System.out.println("Exception occurred while generating event");
107107
e.printStackTrace();
108108
Assert.assertFalse(true);
109109
}
@@ -265,4 +265,4 @@ public void testValidateTemplates() {
265265
Assert.assertFalse(true);
266266
}
267267
}
268-
}
268+
}

0 commit comments

Comments
 (0)