summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/common_j2me
diff options
context:
space:
mode:
authorGeorge Cheng <georgech@ca.ibm.com>2011-12-20 15:00:29 -0500
committerCarolyn MacLeod <Carolyn_MacLeod@ca.ibm.com>2011-12-20 15:00:29 -0500
commitafd2596f7d0b684f40a6cde49ffd8b1e1885b748 (patch)
treede5b91ada4b5eab13de5c186800709887582c361 /bundles/org.eclipse.swt/Eclipse SWT/common_j2me
parent4ddc80fac7dd7587f52e196fb30aea2e09d434af (diff)
downloadeclipse.platform.swt-afd2596f7d0b684f40a6cde49ffd8b1e1885b748.tar.gz
eclipse.platform.swt-afd2596f7d0b684f40a6cde49ffd8b1e1885b748.tar.xz
eclipse.platform.swt-afd2596f7d0b684f40a6cde49ffd8b1e1885b748.zip
Bug 96320 - ImageLoader.save cannot set JPEG compression ratio
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/common_j2me')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/Compatibility.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/Compatibility.java b/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/Compatibility.java
index bf7a67914c..63228faa69 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/Compatibility.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/Compatibility.java
@@ -191,7 +191,7 @@ public static int pow2(int n) {
}
/**
- * Create an DeflaterOutputStream if such things are supported.
+ * Create a DeflaterOutputStream if such things are supported.
*
* @param stream the output stream
* @return a deflater stream or <code>null</code>
@@ -199,7 +199,7 @@ public static int pow2(int n) {
*
* @since 3.4
*/
-public static OutputStream newDeflaterOutputStream(OutputStream stream) throws IOException {
+public static OutputStream newDeflaterOutputStream(OutputStream stream, int level) throws IOException {
return null;
}