Kaydet (Commit) e229993a authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1327197 UwF: Unwritten field

Change-Id: I520235178bc1eaea5e5bc0497ab8824bf2775456
üst 39accf65
......@@ -113,14 +113,6 @@ public class DBTools {
* Representation of <code>'IsPasswordRequired'</code> property.
*/
public Boolean IsPasswordRequired = null ;
/**
* Representation of <code>'IsReadOnly'</code> property.
*/
private Boolean IsReadOnly = null ;
/**
* Representation of <code>'TableFilter'</code> property.
*/
private String[] TableFilter = null ;
/**
* Creates new <code>com.sun.star.sdb.DataSource</code> service
......@@ -141,9 +133,6 @@ public class DBTools {
if (User != null) props.setPropertyValue("User", User) ;
if (Password != null) props.setPropertyValue("Password", Password) ;
if (IsPasswordRequired != null) props.setPropertyValue("IsPasswordRequired", IsPasswordRequired) ;
if (IsReadOnly != null) props.setPropertyValue("IsReadOnly", IsReadOnly) ;
if (TableFilter != null) props.setPropertyValue("TableFilter", TableFilter) ;
return src ;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment