From 6d5ff33bdffa1e4a8b9e9c999604a9a84dc9426c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez?= Date: Tue, 16 Jun 2015 00:22:30 -0500 Subject: [PATCH] Fix typos Closes gh-3247 --- .../jms/hornetq/HornetQConnectionFactoryFactory.java | 6 +++--- .../jms/hornetq/HornetQEmbeddedConfigurationFactory.java | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQConnectionFactoryFactory.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQConnectionFactoryFactory.java index ff6028b85a..c4d5876db0 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQConnectionFactoryFactory.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQConnectionFactoryFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2014 the original author or authors. + * Copyright 2012-2015 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. @@ -58,7 +58,7 @@ class HornetQConnectionFactoryFactory { public T createConnectionFactory( Class factoryClass) { try { - startEmbededJms(); + startEmbeddedJms(); return doCreateConnectionFactory(factoryClass); } catch (Exception ex) { @@ -67,7 +67,7 @@ class HornetQConnectionFactoryFactory { } } - private void startEmbededJms() { + private void startEmbeddedJms() { if (ClassUtils.isPresent(EMBEDDED_JMS_CLASS, null)) { try { this.beanFactory.getBeansOfType(Class.forName(EMBEDDED_JMS_CLASS)); diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQEmbeddedConfigurationFactory.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQEmbeddedConfigurationFactory.java index c7cf7349f2..b23f5c180c 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQEmbeddedConfigurationFactory.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQEmbeddedConfigurationFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2014 the original author or authors. + * Copyright 2012-2015 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. @@ -36,7 +36,7 @@ import org.springframework.boot.autoconfigure.jms.hornetq.HornetQProperties.Embe */ class HornetQEmbeddedConfigurationFactory { - private Log logger = LogFactory.getLog(HornetQAutoConfiguration.class); + private Log logger = LogFactory.getLog(HornetQEmbeddedConfigurationFactory.class); private final Embedded properties;