minor fix - remove unused variable
This commit is contained in:
parent
22353452f2
commit
f82dcead66
|
|
@ -113,16 +113,13 @@ public class DataElementHandler extends AbstractElementHandler {
|
||||||
else {
|
else {
|
||||||
String sql = "select * from "+d_tablename;
|
String sql = "select * from "+d_tablename;
|
||||||
String whereand = " where";
|
String whereand = " where";
|
||||||
String t_tablename = null;
|
|
||||||
String CURRENT_KEY = "key1name";
|
String CURRENT_KEY = "key1name";
|
||||||
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
||||||
t_tablename = atts.getValue(CURRENT_KEY).substring(0, atts.getValue(CURRENT_KEY).length()-3);
|
|
||||||
sql = sql+whereand+" "+atts.getValue(CURRENT_KEY)+"="+atts.getValue("lookup"+CURRENT_KEY);
|
sql = sql+whereand+" "+atts.getValue(CURRENT_KEY)+"="+atts.getValue("lookup"+CURRENT_KEY);
|
||||||
whereand = " and";
|
whereand = " and";
|
||||||
}
|
}
|
||||||
CURRENT_KEY = "key2name";
|
CURRENT_KEY = "key2name";
|
||||||
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
||||||
t_tablename = atts.getValue(CURRENT_KEY).substring(0, atts.getValue(CURRENT_KEY).length()-3);
|
|
||||||
sql = sql+whereand+" "+atts.getValue(CURRENT_KEY)+"="+atts.getValue("lookup"+CURRENT_KEY);
|
sql = sql+whereand+" "+atts.getValue(CURRENT_KEY)+"="+atts.getValue("lookup"+CURRENT_KEY);
|
||||||
whereand = " and";
|
whereand = " and";
|
||||||
}
|
}
|
||||||
|
|
@ -147,12 +144,10 @@ public class DataElementHandler extends AbstractElementHandler {
|
||||||
// set keyXname.
|
// set keyXname.
|
||||||
CURRENT_KEY = "key1name";
|
CURRENT_KEY = "key1name";
|
||||||
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
||||||
t_tablename = atts.getValue(CURRENT_KEY).substring(0, atts.getValue(CURRENT_KEY).length()-3);
|
|
||||||
genericPO.setValueNoCheck(atts.getValue(CURRENT_KEY), atts.getValue("lookup"+CURRENT_KEY));
|
genericPO.setValueNoCheck(atts.getValue(CURRENT_KEY), atts.getValue("lookup"+CURRENT_KEY));
|
||||||
}
|
}
|
||||||
CURRENT_KEY = "key2name";
|
CURRENT_KEY = "key2name";
|
||||||
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
if (!atts.getValue(CURRENT_KEY).equals("")) {
|
||||||
t_tablename = atts.getValue(CURRENT_KEY).substring(0, atts.getValue(CURRENT_KEY).length()-3);
|
|
||||||
genericPO.setValueNoCheck(atts.getValue(CURRENT_KEY), atts.getValue("lookup"+CURRENT_KEY));
|
genericPO.setValueNoCheck(atts.getValue(CURRENT_KEY), atts.getValue("lookup"+CURRENT_KEY));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue