mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 15:50:45 +00:00
rename AMF to Amf part2
This commit is contained in:
+3
-3
@@ -22,12 +22,12 @@ import java.util.Map;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
public class Amf3InputStream_ extends InputStream {
|
||||
public class Amf3InputStream extends InputStream {
|
||||
|
||||
public final static Logger LOGGER = Logger.getLogger(Amf3InputStream_.class.getName());
|
||||
public final static Logger LOGGER = Logger.getLogger(Amf3InputStream.class.getName());
|
||||
private final InputStream is;
|
||||
|
||||
public Amf3InputStream_(InputStream is) {
|
||||
public Amf3InputStream(InputStream is) {
|
||||
this.is = is;
|
||||
}
|
||||
|
||||
+2
-2
@@ -3,11 +3,11 @@ package com.jpexs.decompiler.flash.amf.amf3;
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
|
||||
public class Amf3OutputStream_ extends OutputStream {
|
||||
public class Amf3OutputStream extends OutputStream {
|
||||
|
||||
private final OutputStream os;
|
||||
|
||||
public Amf3OutputStream_(OutputStream os) {
|
||||
public Amf3OutputStream(OutputStream os) {
|
||||
this.os = os;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user