Skip to content

Commit

Permalink
Removing generics parameterization
Browse files Browse the repository at this point in the history
==================================
The generics enter in conflict with
private inner-classes and this
becomes a problem with some Java compilers.
--> PullRequest getestet und die Änderung Übernommen
  • Loading branch information
Chlara committed Dec 18, 2014
1 parent e08157a commit fce3fa3
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,12 @@
* @param <Range>
* @param <RangeHandler> */

public class ValidationFrowModuleImpl<Range, RangeHandler> extends ValidationModuleImpl implements
ValidationFrowModule
public class ValidationFrowModuleImpl extends ValidationModuleImpl implements ValidationFrowModule
/* public class ValidationFrowModuleImpl<Range, RangeHandler> extends ValidationModuleImpl
* implements ValidationFrowModule
*
* <Range, RangeHandler> bereitet Probleme beim Projekt-Build. Da es nicht benötigt wird, wurde es
* entfernt. */
{
private static final int UNBOUNDED = -1;

Expand Down

0 comments on commit fce3fa3

Please sign in to comment.