/* * Copyright (c) 2007 Mockito contributors * This program is made available under the terms of the MIT License. */ package org.powermock.api.mockito.repackaged.cglib.core; public class ClassesKey { private static final Key FACTORY = (Key)KeyFactory.create(Key.class, KeyFactory.OBJECT_BY_CLASS); private ClassesKey() { } public static Object create(Object[] array) { return FACTORY.newInstance(array); } interface Key { Object newInstance(Object[] array); } }