diff options
Diffstat (limited to 'libdexfile/dex/modifiers.h')
-rw-r--r-- | libdexfile/dex/modifiers.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libdexfile/dex/modifiers.h b/libdexfile/dex/modifiers.h index 38f8455b64..018b1419b1 100644 --- a/libdexfile/dex/modifiers.h +++ b/libdexfile/dex/modifiers.h @@ -42,11 +42,6 @@ static constexpr uint32_t kAccEnum = 0x4000; // class, field, ic (1.5) static constexpr uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16) -// The following flags are used to insert hidden API access flags into boot class path dex files. -// They are decoded by ClassAccessor and removed from the access flags before used by the runtime. -static constexpr uint32_t kAccDexHiddenBit = 0x00000020; // field, method (not native) -static constexpr uint32_t kAccDexHiddenBitNative = 0x00000200; // method (native) - static constexpr uint32_t kAccConstructor = 0x00010000; // method (dex only) <(cl)init> static constexpr uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only) static constexpr uint32_t kAccClassIsProxy = 0x00040000; // class (dex only) |