Skip to content

Commit

Permalink
Typo.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.cafe-babe.org:4443/svn/labs/ceylon/modules/trunk@82 f6ca39e8-d20b-4802-ae84-49c359192251
  • Loading branch information
alesj committed Dec 8, 2010
1 parent 5e32b0d commit 9768651
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,9 @@ public boolean accept(String path)
{
return filter.accept(path);
}

public String toString()
{
return filter.toString();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,9 @@ public boolean matchesPackageName(String packageName)
{
return matchesResourcePath(ClassLoaderUtils.packageToPath(packageName));
}

public String toString()
{
return filter.toString();
}
}
2 changes: 1 addition & 1 deletion testsuite/src/test/java/si/alesj/ceylon/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Module
{
public ceylon.lang.modules.Module getModule()
{
ModuleName name = new ModuleName("is.alesj.ceylon");
ModuleName name = new ModuleName("si.alesj.ceylon");
ModuleVersion version = new ModuleVersion(1, 0, 0, "GA");
return new ceylon.lang.modules.Module(name, version, null, null, null);
}
Expand Down

0 comments on commit 9768651

Please sign in to comment.