Joel Johnson
2015-07-01 d3e20b1e4c76b5407fe5d72fa343da1c2a065e90
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);
}