ICU-10484 Fixed a couple of issues reported by secureCheck.
X-SVN-Rev: 34947
This commit is contained in:
parent
3fa1319cc4
commit
0654101831
@ -1,6 +1,6 @@
|
||||
//#
|
||||
//#*******************************************************************************
|
||||
//#* Copyright (C) 1997-2011, International Business Machines Corporation and *
|
||||
//#* Copyright (C) 1997-2014, International Business Machines Corporation and *
|
||||
//#* others. All Rights Reserved. *
|
||||
//#*******************************************************************************
|
||||
//#* This is the ant build file for ICU4J. See readme.html for more information.
|
||||
@ -25,6 +25,9 @@ grant
|
||||
|
||||
// for testing lenient decimal/group separator parsing
|
||||
permission java.util.PropertyPermission "com.ibm.icu.text.DecimalFormat.SkipExtendedSeparatorParsing", "write";
|
||||
|
||||
// for setting the default time zone by the test framework
|
||||
permission java.util.PropertyPermission "user.timezone", "write";
|
||||
};
|
||||
|
||||
// there must be a way for code in one jar file to call code in another jar
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2007-2013, International Business Machines Corporation and
|
||||
* Copyright (C) 2007-2014, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
*******************************************************************************
|
||||
*/
|
||||
@ -52,8 +52,6 @@ import com.ibm.icu.util.ULocale;
|
||||
*/
|
||||
public class PluralRulesTest extends TestFmwk {
|
||||
|
||||
static boolean USE_ALT = System.getProperty("alt_plurals") != null;
|
||||
|
||||
PluralRulesFactory factory = PluralRulesFactory.NORMAL;
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
|
Loading…
Reference in New Issue
Block a user