Housekeeping: removed a public modifier from an interface method since they're public by default.

git-svn-id: http://jclouds.googlecode.com/svn/trunk@2594 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
sharedocs1@gmail.com 2010-01-04 20:02:12 +00:00
parent a22143a27d
commit bf272b3df0
1 changed files with 1 additions and 1 deletions

View File

@ -79,6 +79,6 @@ public interface Logger {
*
*/
public static interface LoggerFactory {
public Logger getLogger(String category);
Logger getLogger(String category);
}
}