diff src/org/tmatesoft/hg/util/DirectHashSet.java @ 467:51d682cf9cdc

Cleaned experimental tag and updated comments/javadoc
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 22 Jun 2012 17:39:31 +0200
parents 85b8efde5586
children
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/util/DirectHashSet.java	Wed Jun 20 17:12:00 2012 +0200
+++ b/src/org/tmatesoft/hg/util/DirectHashSet.java	Fri Jun 22 17:39:31 2012 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011 TMate Software Ltd
+ * Copyright (c) 2011-2012 TMate Software Ltd
  *  
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -16,7 +16,6 @@
  */
 package org.tmatesoft.hg.util;
 
-import org.tmatesoft.hg.internal.Experimental;
 
 /**
  * Memory-friendly alternative to HashSet. With slightly worse performance than that of HashSet, uses n * sizeof(HashMap.Entry) less memory 
@@ -26,7 +25,6 @@
  * @author Artem Tikhomirov
  * @author TMate Software Ltd.
  */
-@Experimental
 public class DirectHashSet<T> {
 	
 	private Object[] table;