James Moger
2015-11-19 e41e8f8c3bc9f5edab1d271464364f95620ece8c
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);
}