diff options
Diffstat (limited to 'tests/bugs1810/490315/SomeContext.java')
-rwxr-xr-x | tests/bugs1810/490315/SomeContext.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs1810/490315/SomeContext.java b/tests/bugs1810/490315/SomeContext.java new file mode 100755 index 000000000..4eeb7a66a --- /dev/null +++ b/tests/bugs1810/490315/SomeContext.java @@ -0,0 +1,13 @@ +package test;
+
+public class SomeContext
+{
+ public SomeContext getPermissionDetails()
+ {
+ return this;
+ }
+
+ public boolean checkAccess(String tag, SomeEnum accessType) {
+ return false;
+ }
+}
|