Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
MDeLuise authored and Coduz committed Feb 6, 2023
1 parent c00671c commit 352fb94
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* In cucumber setting is done in custom cucumber runner CucumberWithProperties.
* <p>
* Mocked locator can be used in two ways:
* - setting services with seter and having local Map of services and factories
* - setting services with setter and having local Map of services and factories
* - setting services with Google Guice DI
*/
public class MockedLocator extends KapuaLocator {
Expand Down Expand Up @@ -99,7 +99,7 @@ public <S extends KapuaService> S getService(Class<S> serviceClass) {
@Override
public <F extends KapuaObjectFactory> F getFactory(Class<F> factoryClass) {

logger.info("Geting mocked factory {} from MockedLocator", factoryClass.getName());
logger.info("Getting mocked factory {} from MockedLocator", factoryClass.getName());
F factory = getMockedFactory(factoryClass);
if ((factory == null) && (guiceInjector != null)) {
try {
Expand Down

0 comments on commit 352fb94

Please sign in to comment.