Ignore:
Timestamp:
2019-12-13T00:48:33+01:00 (4 years ago)
Author:
Don-vip
Message:

code cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/imagery/SharpenImageProcessor.java

    r12782 r15586  
    2727    private ConvolveOp op;
    2828
    29     private static final float[] KERNEL_IDENTITY = new float[] {
     29    private static final float[] KERNEL_IDENTITY = {
    3030        0, 0, 0,
    3131        0, 1, 0,
     
    3333    };
    3434
    35     private static final float[] KERNEL_BLUR = new float[] {
     35    private static final float[] KERNEL_BLUR = {
    3636        1f / 16, 2f / 16, 1f / 16,
    3737        2f / 16, 4f / 16, 2f / 16,
     
    3939    };
    4040
    41     private static final float[] KERNEL_SHARPEN = new float[] {
     41    private static final float[] KERNEL_SHARPEN = {
    4242        -.5f, -1f, -.5f,
    4343         -1f, 7, -1f,
Note: See TracChangeset for help on using the changeset viewer.