mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
make classes used in open api public (follow-up to IDEA-159286)
This commit is contained in:
@@ -24,7 +24,7 @@ import java.util.*;
|
||||
* @author: db
|
||||
* Date: 01.03.11
|
||||
*/
|
||||
abstract class Difference {
|
||||
public abstract class Difference {
|
||||
|
||||
public static boolean weakerAccess(final int me, final int then) {
|
||||
return ((me & Opcodes.ACC_PRIVATE) > 0 && (then & Opcodes.ACC_PRIVATE) == 0) ||
|
||||
|
||||
@@ -32,7 +32,7 @@ import java.util.Set;
|
||||
* @author: db
|
||||
* Date: 14.02.11
|
||||
*/
|
||||
class TypeRepr {
|
||||
public class TypeRepr {
|
||||
private static final byte PRIMITIVE_TYPE = 0x0;
|
||||
private static final byte CLASS_TYPE = 0x1;
|
||||
private static final byte ARRAY_TYPE = 0x2;
|
||||
|
||||
Reference in New Issue
Block a user