Removed deprecated ConcurrentSoftMap

This commit is contained in:
Nathan Adams
2011-10-10 22:05:35 +01:00
parent b05d4769d8
commit 1195944c90
3 changed files with 0 additions and 281 deletions

View File

@@ -1,14 +1,5 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.bukkit.craftbukkit.util;
/**
*
* @author Nathan
*/
public abstract class LongHash {
static long toLong(int msw, int lsw) {
return ((long) msw << 32) + lsw - Integer.MIN_VALUE;