Skip to content

Commit

Permalink
Merge branch 'release/4.2.1.RELEASE.20220531'
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusHdez960717 committed Jun 1, 2022
2 parents d20f33a + 28f93eb commit 45d4fb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

group = 'dev.root101.clean'

version = '4.2.0.RELEASE.20220524'
version = '4.2.1.RELEASE.20220531'

repositories {
jcenter()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,19 @@
* @param <Domain>
* @param <Entity>
* @param <ID>
* @param <GeneralConverter>
* @param <ExternalRepo>
*/
@Licenced
public class DefaultCRUDRepo<Domain extends DomainObject<ID>, Entity, ID, ExternalRepo extends CRUDExternalRepository<Entity, ID>> implements CRUDRepository<Domain, ID> {
public class DefaultCRUDRepo<Domain extends DomainObject<ID>, Entity, ID, GeneralConverter extends Converter<Domain, Entity>, ExternalRepo extends CRUDExternalRepository<Entity, ID>> implements CRUDRepository<Domain, ID> {

private final boolean doFirePropertyChanges = false;//for the momento allways enabled
protected transient final java.beans.PropertyChangeSupport propertyChangeSupport = new java.beans.PropertyChangeSupport(this);

protected final ExternalRepo externalRepo;
protected final Converter<Domain, Entity> converter;
protected final GeneralConverter converter;

public DefaultCRUDRepo(ExternalRepo externalRepo, Converter converter) {
public DefaultCRUDRepo(ExternalRepo externalRepo, GeneralConverter converter) {
this.externalRepo = externalRepo;
this.converter = converter;
}
Expand Down

0 comments on commit 45d4fb5

Please sign in to comment.