Glenn Matthys
2016-01-17 5f3ea6e71a39dfc09cdb85a055425802168b34b3
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);
}