Ignore:
Timestamp:
2010-09-15T18:54:18+02:00 (15 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/ImageModifier.java

    r20931 r23190  
    1919
    2020    protected int parcelColor = Color.RED.getRGB();
    21    
     21
    2222    public BufferedImage bufferedImage;
    2323
     
    3131            new byte[] { (byte) 0, (byte) 0xFF }
    3232        );
    33        
     33
    3434        BufferedImage dest = new BufferedImage(
    3535            src.getWidth(), src.getHeight(),
     
    3737            icm
    3838            );
    39        
     39
    4040        ColorConvertOp cco = new ColorConvertOp(
    4141            src.getColorModel().getColorSpace(),
     
    4343            null
    4444            );
    45        
     45
    4646        cco.filter(src, dest);
    47        
     47
    4848        return dest;
    4949      }
     
    7272        return convert4(src, cmap);
    7373      }
    74        
     74
    7575      /**
    7676       * Converts the source image to 4-bit colour
     
    9696            );
    9797        cco.filter(src, dest);
    98        
     98
    9999        return dest;
    100100      }
    101      
     101
    102102    protected BufferedImage convert8(BufferedImage src) {
    103103        BufferedImage dest = new BufferedImage(
     
    115115
    116116    public boolean isBuildingColor(int rgb, boolean ignoreParcelColor) {
    117         for (int i = 0; i < cBuilingFootColors.length; i++) 
     117        for (int i = 0; i < cBuilingFootColors.length; i++)
    118118            if (rgb == cBuilingFootColors[i])
    119119                    return true;
     
    124124
    125125    public boolean isRoofColor(int rgb, boolean ignoreParcelColor) {
    126         for (int i = 0; i < cRoofColors.length; i++) 
     126        for (int i = 0; i < cRoofColors.length; i++)
    127127            if (rgb == cRoofColors[i])
    128128                    return true;
     
    152152        return ret;
    153153    }
    154    
     154
    155155    /**
    156156     * Checks if the rgb value is the black background color
    157      * @param 
     157     * @param
    158158     * @return
    159159     */
Note: See TracChangeset for help on using the changeset viewer.