Revision: 2454
http://sourceforge.net/p/swingme/code/2454
Author: yuranet
Date: 2021-06-13 18:00:13 +0000 (Sun, 13 Jun 2021)
Log Message:
-----------
spelling fix 3
Modified Paths:
--------------
me4se/src/javax/microedition/io/file/FileConnection.java
me4se/src/org/me4se/psi/java1/gcf/file/AssetConnection.java
me4se/src/org/me4se/psi/java1/gcf/file/FileConnectionImpl.java
Modified: me4se/src/javax/microedition/io/file/FileConnection.java
===================================================================
--- me4se/src/javax/microedition/io/file/FileConnection.java 2021-06-13 15:50:28 UTC (rev 2453)
+++ me4se/src/javax/microedition/io/file/FileConnection.java 2021-06-13 18:00:13 UTC (rev 2454)
@@ -150,9 +150,5 @@
* @return
*/
public OutputStream openOutputStream(long byteOffset) throws IOException;
-
- // YURA FIX
- public void setWritable(boolean writable) throws IOException;
-
}
Modified: me4se/src/org/me4se/psi/java1/gcf/file/AssetConnection.java
===================================================================
--- me4se/src/org/me4se/psi/java1/gcf/file/AssetConnection.java 2021-06-13 15:50:28 UTC (rev 2453)
+++ me4se/src/org/me4se/psi/java1/gcf/file/AssetConnection.java 2021-06-13 18:00:13 UTC (rev 2454)
@@ -165,10 +165,6 @@
throw new UnsupportedOperationException("Not supported yet.");
}
- public void setWritable(boolean writable) throws IOException {
- throw new UnsupportedOperationException("Not supported yet.");
- }
-
public DataInputStream openDataInputStream() throws IOException {
return new DataInputStream(openInputStream());
}
Modified: me4se/src/org/me4se/psi/java1/gcf/file/FileConnectionImpl.java
===================================================================
--- me4se/src/org/me4se/psi/java1/gcf/file/FileConnectionImpl.java 2021-06-13 15:50:28 UTC (rev 2453)
+++ me4se/src/org/me4se/psi/java1/gcf/file/FileConnectionImpl.java 2021-06-13 18:00:13 UTC (rev 2454)
@@ -342,11 +342,6 @@
file = null;
mode = -1;
}
-
- public void setWritable(boolean writable) throws IOException {
- // TODO
- }
-
}
/*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|