Commit 61b47079 authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Remove duplicate words

Closes gh-5731
parent 6ebc8d21
...@@ -175,7 +175,7 @@ public class RestarterTests { ...@@ -175,7 +175,7 @@ public class RestarterTests {
Thread viaFactory = factory.newThread(runnable); Thread viaFactory = factory.newThread(runnable);
// Regular threads will inherit the current thread // Regular threads will inherit the current thread
assertThat(regular.getContextClassLoader()).isEqualTo(contextClassLoader); assertThat(regular.getContextClassLoader()).isEqualTo(contextClassLoader);
// Factory threads should should inherit from the initial thread // Factory threads should inherit from the initial thread
assertThat(viaFactory.getContextClassLoader()).isEqualTo(parentLoader); assertThat(viaFactory.getContextClassLoader()).isEqualTo(parentLoader);
}; };
}; };
......
...@@ -754,7 +754,7 @@ content into your application; rather pick only the properties that you need. ...@@ -754,7 +754,7 @@ content into your application; rather pick only the properties that you need.
spring.jta.narayana.recovery-jms-user= # JMS username to be used by recovery manager. spring.jta.narayana.recovery-jms-user= # JMS username to be used by recovery manager.
spring.jta.narayana.recovery-modules= # Comma-separated list of recovery modules. spring.jta.narayana.recovery-modules= # Comma-separated list of recovery modules.
spring.jta.narayana.transaction-manager-id=1 # Unique transaction manager id. spring.jta.narayana.transaction-manager-id=1 # Unique transaction manager id.
spring.jta.narayana.xa-resource-orphan-filters= # Comma-separated list of of orphan filters. spring.jta.narayana.xa-resource-orphan-filters= # Comma-separated list of orphan filters.
# EMBEDDED MONGODB ({sc-spring-boot-autoconfigure}/mongo/embedded/EmbeddedMongoProperties.{sc-ext}[EmbeddedMongoProperties]) # EMBEDDED MONGODB ({sc-spring-boot-autoconfigure}/mongo/embedded/EmbeddedMongoProperties.{sc-ext}[EmbeddedMongoProperties])
spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable. spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable.
......
...@@ -88,7 +88,7 @@ public class NarayanaProperties { ...@@ -88,7 +88,7 @@ public class NarayanaProperties {
private String recoveryJmsPass = null; private String recoveryJmsPass = null;
/** /**
* Comma-separated list of of orphan filters. * Comma-separated list of orphan filters.
*/ */
private List<String> xaResourceOrphanFilters = Arrays.asList( private List<String> xaResourceOrphanFilters = Arrays.asList(
"com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter", "com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter",
......
...@@ -20,7 +20,7 @@ import org.neo4j.ogm.config.Configuration; ...@@ -20,7 +20,7 @@ import org.neo4j.ogm.config.Configuration;
import org.neo4j.ogm.session.SessionFactory; import org.neo4j.ogm.session.SessionFactory;
/** /**
* Provide a a Neo4j {@link SessionFactory} instance based on a configurable * Provide a Neo4j {@link SessionFactory} instance based on a configurable
* {@link Configuration} and custom packages to scan. * {@link Configuration} and custom packages to scan.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment