Paul Martin
2016-03-23 caa660d97f95e4da66c9f7722267145ffe8e6d48
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);
}