Joel Johnson
2015-06-26 62e0259129fa7147a3899244569c05f4e7fd3b7c
src/main/java/com/gitblit/AvatarGenerator.java
@@ -15,18 +15,8 @@
 */
package com.gitblit;
public abstract class AvatarGenerator {
public interface AvatarGenerator {
   public abstract String getURL(String username, String emailaddress, boolean identicon, int width);
   /**
    * A method that can extract custom settings for the avatar generator
    * The default does nothing, it can be overridden
    *
    * @param settings
    */
   public void configure(IStoredSettings settings) {
   }
   String getURL(String username, String emailaddress, boolean identicon, int width);
}