diff options
Diffstat (limited to 'tests/bugs175/pr430243/PolicyManager.java')
-rw-r--r-- | tests/bugs175/pr430243/PolicyManager.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/bugs175/pr430243/PolicyManager.java b/tests/bugs175/pr430243/PolicyManager.java new file mode 100644 index 000000000..f6e508f33 --- /dev/null +++ b/tests/bugs175/pr430243/PolicyManager.java @@ -0,0 +1,20 @@ +package com.test2; + +import com.test2.PolicyProviderConstants.OpenInPolicyValues; + +public class PolicyManager { + public static OpenInPolicyValues getOpenInPolicy (boolean showDialog) + { + OpenInPolicyValues value = PolicyProviderInterface.getOpenInPolicy(); + + return value; + } + + public static void main(String[] args) { + new PolicyManager().foo(); + } + + public String foo() { + return ""; + } +}
\ No newline at end of file |