Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Feb 9, 2024
1 parent 3de7817 commit d4103b8
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 201 deletions.
2 changes: 1 addition & 1 deletion src/i/Strings.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public final class Strings {

public static final String MOCHA_DOOM_TITLE = "Vanilla Mocha Doom Alpha 1.6.14";
public static final String MOCHA_DOOM_TITLE = "Vanilla Mocha Doom Alpha 1.6.15";

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

Expand Down
17 changes: 8 additions & 9 deletions src/s/AbstractDoomAudio.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@
import mochadoom.Loggers;
import p.mobj_t;

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

private static final Logger LOGGER = Loggers.getLogger(AbstractDoomAudio.class.getName());
Expand Down
6 changes: 0 additions & 6 deletions src/w/IWadLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,6 @@ public interface IWadLoader {
@W_Wad.C(W_CacheLumpNum)
public abstract <T extends CacheableDoomObject> T CacheLumpNum(int lump, int tag, Class<T> what);

// MAES 24/8/2011: superseded by auto-allocating version with proper
// container-based caching.
@Deprecated
public abstract void CacheLumpNumIntoArray(int lump, int tag,
Object[] array, Class<?> what) throws IOException;

/**
* Return a cached lump based on its name, as raw bytes, no matter what.
* It's rare, but has its uses.
Expand Down
Loading

0 comments on commit d4103b8

Please sign in to comment.