Skip to content

Commit d4103b8

Browse files
committed
code cleanup
1 parent 3de7817 commit d4103b8

File tree

4 files changed

+26
-201
lines changed

4 files changed

+26
-201
lines changed

src/i/Strings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public final class Strings {
44

5-
public static final String MOCHA_DOOM_TITLE = "Vanilla Mocha Doom Alpha 1.6.14";
5+
public static final String MOCHA_DOOM_TITLE = "Vanilla Mocha Doom Alpha 1.6.15";
66

77
public static final String MODIFIED_GAME_TITLE = "Modified game alert";
88

src/s/AbstractDoomAudio.java

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@
1818
import mochadoom.Loggers;
1919
import p.mobj_t;
2020

21-
/** Some stuff that is not implementation dependant
22-
* This includes channel management, sound priorities,
23-
* positioning, distance attenuation etc. It's up to
24-
* lower-level "drivers" to actually implements those.
25-
* This particular class needs not be a dummy itself, but
26-
* the drivers it "talks" to might be.
27-
*
28-
*
29-
* */
21+
/**
22+
* Some stuff that is not implementation dependant
23+
* This includes channel management, sound priorities,
24+
* positioning, distance attenuation etc. It's up to
25+
* lower-level "drivers" to actually implements those.
26+
* This particular class needs not be a dummy itself, but
27+
* the drivers it "talks" to might be.
28+
**/
3029
public class AbstractDoomAudio implements IDoomSound {
3130

3231
private static final Logger LOGGER = Loggers.getLogger(AbstractDoomAudio.class.getName());

src/w/IWadLoader.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,6 @@ public interface IWadLoader {
119119
@W_Wad.C(W_CacheLumpNum)
120120
public abstract <T extends CacheableDoomObject> T CacheLumpNum(int lump, int tag, Class<T> what);
121121

122-
// MAES 24/8/2011: superseded by auto-allocating version with proper
123-
// container-based caching.
124-
@Deprecated
125-
public abstract void CacheLumpNumIntoArray(int lump, int tag,
126-
Object[] array, Class<?> what) throws IOException;
127-
128122
/**
129123
* Return a cached lump based on its name, as raw bytes, no matter what.
130124
* It's rare, but has its uses.

0 commit comments

Comments
 (0)