Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/apollo/gui/FastAlphaEffect.java

    r315 r1102  
    6060                        int x, int y,
    6161                        int width, int height,
    62                         int rgb) {
     62                        int rgb)
     63        {
    6364               
    64                 if (raster == null)
     65                if (raster == null) {
    6566                        throw new NullPointerException("raster");
    66                 else if (colorModel == null)
     67                } else if (colorModel == null) {
    6768                        throw new NullPointerException("raster");
     69                }
    6870               
    6971                int endcol = x + width;
Note: See TracChangeset for help on using the changeset viewer.