diff options
| author | 2013-11-06 17:49:00 -0800 | |
|---|---|---|
| committer | 2013-11-06 17:49:00 -0800 | |
| commit | ec53849091b66571b9e9fb1e79249b815c43e752 (patch) | |
| tree | 2c4299f01420b4bb68f6d8ca4327ac83113037e1 /compiler/driver/compiler_driver.cc | |
| parent | 937041e4ad894dee2ab0f0ce76b2a6408517aa8c (diff) | |
| parent | d3c20c1a46863841c866b64a4c21e8bf9396b54c (diff) | |
am d3c20c1a: Update compiler blacklist to include java.net.NetworkInterface.
* commit 'd3c20c1a46863841c866b64a4c21e8bf9396b54c':
Update compiler blacklist to include java.net.NetworkInterface.
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index bea94a74df..b876724f21 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -1980,6 +1980,7 @@ static const char* class_initializer_black_list[] = { "Ljava/net/Inet4Address;", // Sub-class of InetAddress. "Ljava/net/Inet6Address;", // Sub-class of InetAddress. "Ljava/net/InetUnixAddress;", // Sub-class of InetAddress. + "Ljava/net/NetworkInterface;", // Calls to Random.<init> -> System.currentTimeMillis -> OsConstants.initConstants. "Ljava/nio/charset/Charset;", // Calls Charset.getDefaultCharset -> System.getProperty -> OsConstants.initConstants. "Ljava/nio/charset/CharsetICU;", // Sub-class of Charset. "Ljava/nio/charset/Charsets;", // Calls Charset.forName. |