Skip to content

Commit

Permalink
JAMES-1988 Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Ouazana authored and chibenwa committed Apr 12, 2017
1 parent 9afa628 commit 06950a3
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
@@ -1,5 +1,5 @@
# Adding Jars to JAMES

The jar in this folder will be added to JAMES classpath when mounted under /root/included-jars inside the running container.
The jar in this folder will be added to JAMES classpath when mounted under /root/extensions-jars inside the running container.

You can use it to add you customs Mailets/Matchers.
@@ -1,5 +1,5 @@
# Adding Jars to JAMES

The jar in this folder will be added to JAMES classpath when mounted under /root/included-jars inside the running container.
The jar in this folder will be added to JAMES classpath when mounted under /root/extensions-jars inside the running container.

You can use it to add you customs Mailets/Matchers.
@@ -1,5 +1,5 @@
# Adding Jars to JAMES

The jar in this folder will be added to JAMES classpath when mounted under /root/included-jars inside the running container.
The jar in this folder will be added to JAMES classpath when mounted under /root/extensions-jars inside the running container.

You can use it to add you customs Mailets/Matchers.
Expand Up @@ -54,7 +54,7 @@ public InputStream getResource(String url) throws IOException {

@Override
public File getFile(String fileURL) throws FileNotFoundException {
return new File(ClassLoader.getSystemResource("recursive/included-jars").getFile());
return new File(ClassLoader.getSystemResource("recursive/extensions-jars").getFile());
}

@Override
Expand Down
Expand Up @@ -37,7 +37,7 @@
import com.google.inject.Guice;
import com.google.inject.Injector;

public class GuilceMailetLoaderTest {
public class GuiceMailetLoaderTest {

@Rule
public ExpectedException expectedException = ExpectedException.none();
Expand Down Expand Up @@ -70,7 +70,7 @@ public void getMailetShouldThrowOnBadType() throws Exception {
}

@Test
public void getMailetShouldLoadClassWhenInIncludedJars() throws Exception {
public void getMailetShouldLoadClassWhenInExtensionsJars() throws Exception {
GuiceMailetLoader guiceMailetLoader = new GuiceMailetLoader(injector,
new ExtendedClassLoader(CLASSPATH_FILE_SYSTEM));

Expand All @@ -84,7 +84,7 @@ public void getMailetShouldLoadClassWhenInIncludedJars() throws Exception {
}

@Test
public void getMailetShouldShouldRecursivelyIncludeJar() throws Exception {
public void getMailetShouldBrowseRecursivelyExtensionsJars() throws Exception {
GuiceMailetLoader guiceMailetLoader = new GuiceMailetLoader(injector,
new ExtendedClassLoader(RECURSIVE_CLASSPATH_FILE_SYSTEM));

Expand All @@ -98,7 +98,7 @@ public void getMailetShouldShouldRecursivelyIncludeJar() throws Exception {
}

@Test
public void getMailedShouldShouldAllowCustomPackages() throws Exception {
public void getMailedShouldAllowCustomPackages() throws Exception {
GuiceMailetLoader guiceMailetLoader = new GuiceMailetLoader(injector,
new ExtendedClassLoader(CLASSPATH_FILE_SYSTEM));

Expand Down
Expand Up @@ -37,7 +37,7 @@
import com.google.inject.Guice;
import com.google.inject.Injector;

public class GuilceMatcherLoaderTest {
public class GuiceMatcherLoaderTest {

@Rule
public ExpectedException expectedException = ExpectedException.none();
Expand Down Expand Up @@ -70,7 +70,7 @@ public void getMatcherShouldThrowOnBadType() throws Exception {
}

@Test
public void getMatcherShouldLoadClassWhenInIncludedJars() throws Exception {
public void getMatcherShouldLoadClassWhenInExtensionsJars() throws Exception {
GuiceMatcherLoader guiceMatcherLoader = new GuiceMatcherLoader(injector,
new ExtendedClassLoader(CLASSPATH_FILE_SYSTEM));

Expand All @@ -84,7 +84,7 @@ public void getMatcherShouldLoadClassWhenInIncludedJars() throws Exception {
}

@Test
public void getMatcherShouldShouldRecursivelyIncludeJar() throws Exception {
public void getMatcherShouldBrowseRecursivelyExtensionJars() throws Exception {
GuiceMatcherLoader guiceMatcherLoader = new GuiceMatcherLoader(injector,
new ExtendedClassLoader(RECURSIVE_CLASSPATH_FILE_SYSTEM));

Expand Down

0 comments on commit 06950a3

Please sign in to comment.