Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.graphics.PorterDuff;

public class Main {
    private static int generateCacheKey(int color, PorterDuff.Mode mode) {
        int hashCode = 1;
        hashCode = 31 * hashCode + color;
        hashCode = 31 * hashCode + mode.hashCode();
        return hashCode;
    }
}