Prep for repro+art rename

This commit is contained in:
Willem 2015-12-27 15:44:17 +01:00
parent 1e69054eb7
commit 79adfa251f
3 changed files with 8 additions and 6 deletions

View file

@ -1,4 +1,3 @@
# TPQuery Building # TPQuery Building
## Requirements ## Requirements
@ -28,7 +27,7 @@ mvn -Pbuild -Dusername=(scm_username) clean install release:clean release:prepar
mvn -Ptest-jacoco clean install mvn -Ptest-jacoco clean install
mvn -Pbuild-site site:site mvn -Pbuild-site site:site
Optional add -DstagingDirectory=/tmp/tpquery-build-fullsite Optional add -DstagingDirectory=/tmp/fullsite
And then manual upload. And then manual upload.
## Check for dependency-updates ## Check for dependency-updates

View file

@ -1,7 +1,7 @@
TPQuery FF-TPQuery
========= =========
TPQuery is a java8 library providing templated prepared statements. FF-TPQuery is a java8 library providing templated prepared statements.
## Features ## Features

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2013-2015, Willem Cazander * Copyright (c) 2014-2015, Willem Cazander
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without modification, are permitted provided * Redistribution and use in source and binary forms, with or without modification, are permitted provided
@ -24,6 +24,8 @@ package net.forwardfire.tpquery.config.builder;
import java.util.function.Consumer; import java.util.function.Consumer;
import org.apache.commons.lang3.builder.Builder;
/** /**
* Abstract object builder with parent builder. * Abstract object builder with parent builder.
* *
@ -34,7 +36,7 @@ import java.util.function.Consumer;
* @author Willem Cazander * @author Willem Cazander
* @version 1.0 May 29, 2015 * @version 1.0 May 29, 2015
*/ */
public abstract class AbstractTPQBuilder<P,T,B> { public abstract class AbstractTPQBuilder<P,T,B> implements Builder<P> {
private final P parent; private final P parent;
private final T value; private final T value;
@ -63,6 +65,7 @@ public abstract class AbstractTPQBuilder<P,T,B> {
* Builds the result. * Builds the result.
* @return The result. * @return The result.
*/ */
@Override
public final P build() { public final P build() {
buildParent(); buildParent();
return getParent(); return getParent();