Here you can find the source of hashAdd(final int left, final int right)
public static int hashAdd(final int left, final int right)
//package com.java2s; //License from project: Apache License public class Main { public static int hashAdd(final int left, final int right) { return 37 * (left + right); }/*w w w . j a v a 2 s . co m*/ }