java: use Boolean.valueOf instead of instantiating Boolean objects
Change-Id: Ie41d6b0170a035a694dd270c311a137fd1810e74
This commit is contained in:
@@ -163,8 +163,8 @@ public class HighlightText implements com.sun.star.awt.XActionListener {
|
||||
|
||||
// Only matches whole words and case sensitive
|
||||
descriptor.setPropertyValue(
|
||||
"SearchCaseSensitive", new Boolean(true));
|
||||
descriptor.setPropertyValue("SearchWords", new Boolean(true));
|
||||
"SearchCaseSensitive", Boolean.TRUE);
|
||||
descriptor.setPropertyValue("SearchWords", Boolean.TRUE);
|
||||
}
|
||||
catch (com.sun.star.beans.UnknownPropertyException upe) {
|
||||
System.err.println("Error setting up search properties");
|
||||
|
@@ -105,7 +105,7 @@ public class OfficeAttachment
|
||||
PropertyValue[] propertyvalue_html = new PropertyValue[2];
|
||||
propertyvalue_html[0] = new PropertyValue();
|
||||
propertyvalue_html[0].Name = new String("Overwrite");
|
||||
propertyvalue_html[0].Value = new Boolean(true);
|
||||
propertyvalue_html[0].Value = Boolean.TRUE;
|
||||
propertyvalue_html[1] = new PropertyValue();
|
||||
propertyvalue_html[1].Name = ("FilterName");
|
||||
propertyvalue_html[1].Value = new String("swriter: HTML (StarWriter)");
|
||||
@@ -131,10 +131,10 @@ public class OfficeAttachment
|
||||
PropertyValue[] propertyvalue_sxw = new PropertyValue[2];
|
||||
propertyvalue_sxw[0] = new PropertyValue();
|
||||
propertyvalue_sxw[0].Name = new String("Overwrite");
|
||||
propertyvalue_sxw[0].Value = new Boolean(true);
|
||||
propertyvalue_sxw[0].Value = Boolean.TRUE;
|
||||
propertyvalue_sxw[1] = new PropertyValue();
|
||||
propertyvalue_sxw[1].Name = new String("Overwrite");
|
||||
propertyvalue_sxw[1].Value = new Boolean(true);
|
||||
propertyvalue_sxw[1].Value = Boolean.TRUE;
|
||||
storedDoc.storeAsURL( filenameURL + ".sxw", propertyvalue_sxw);
|
||||
|
||||
File homedir = new File( templocationSystem );
|
||||
|
Reference in New Issue
Block a user