Small change to make these two structures implement RandomAccess (as they should)

This commit is contained in:
Mike Jensen
2014-04-16 14:33:32 -06:00
parent 17f7754d2c
commit 7192b0081d
3 changed files with 4 additions and 2 deletions

View File

@ -11,4 +11,6 @@
package java.util;
public interface RandomAccess {
/* nothing added here, this interface just indicates a
* structure is efficient to access via index's directly.*/
}