[DEBUG] remove dead bdd entry

This commit is contained in:
Edouard DUPIN 2023-01-06 00:25:18 +01:00
parent ff9907e341
commit b50dacc374
3 changed files with 3 additions and 6 deletions

View File

@ -49,9 +49,10 @@ edit file: ```~/.m2/settings.xml```
release:
========
```
export PATH=/usr/lib/jvm/java-18-openjdk/bin:$PATH
mvn install
mvn deploy
```

View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>kangaroo-and-rabbit</groupId>
<artifactId>archidata</artifactId>
<version>0.2.2</version>
<version>0.2.3</version>
<properties>
<jaxrs.version>2.1</jaxrs.version>
<jersey.version>2.32</jersey.version>

View File

@ -583,10 +583,6 @@ public class SqlWrapper {
}
public static <T> T getWhere(Class<T> clazz, List<WhereCondition> condition, boolean full ) throws Exception {
DBEntry entry = new DBEntry(GlobalConfiguration.dbConfig);
T out = null;
// real add in the BDD:
List<T> values = getsWhere(clazz, condition, full, 1);
if (values.size() == 0) {
return null;