mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
29.40.2007 eaa23f4b7af97c108ecffa40c86c32e723a90594
opends/src/server/org/opends/server/admin/PropertyDefinitionVisitor.java
@@ -241,6 +241,8 @@
   * {@link UnknownPropertyDefinitionException}. Sub-classes can
   * override this method with their own default behavior.
   *
   * @param <T>
   *          The type of the underlying property.
   * @param d
   *          The property definition to visit.
   * @param p
@@ -250,7 +252,7 @@
   *           Visitor implementations may optionally throw this
   *           exception.
   */
  public R visitUnknown(PropertyDefinition<?> d, P p)
  public <T> R visitUnknown(PropertyDefinition<T> d, P p)
      throws UnknownPropertyDefinitionException {
    throw new UnknownPropertyDefinitionException(d, p);
  }