Merge pull request #5731 from izeye/polish-20160419

* pr/5731:
  Remove duplicate words
pull/5731/merge
Stephane Nicoll 9 years ago
commit 59f5e14b5f

@ -175,7 +175,7 @@ public class RestarterTests {
Thread viaFactory = factory.newThread(runnable);
// Regular threads will inherit the current thread
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);
};
};

@ -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-modules= # Comma-separated list of recovery modules.
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])
spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable.

@ -88,7 +88,7 @@ public class NarayanaProperties {
private String recoveryJmsPass = null;
/**
* Comma-separated list of of orphan filters.
* Comma-separated list of orphan filters.
*/
private List<String> xaResourceOrphanFilters = Arrays.asList(
"com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter",

@ -20,7 +20,7 @@ import org.neo4j.ogm.config.Configuration;
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.
*
* @author Stephane Nicoll

Loading…
Cancel
Save