aboutsummaryrefslogtreecommitdiff
path: root/development/openjdk/currencyexpire.patch
diff options
context:
space:
mode:
authorStrahil Yordanov <strahilski@yahoo.com>2015-03-05 00:08:08 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2015-03-07 07:05:16 +0700
commit0d8d22f6a92e9523debf0f1d42c8f50cc0a235ae (patch)
tree0feb37c825809814b7f3ea255f0bcf75ccbe167a /development/openjdk/currencyexpire.patch
parent61bda44f3f7add50a6abaff71a86f551bc23d511 (diff)
development/openjdk: Updated for version 7u75b13.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/openjdk/currencyexpire.patch')
-rw-r--r--development/openjdk/currencyexpire.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/development/openjdk/currencyexpire.patch b/development/openjdk/currencyexpire.patch
deleted file mode 100644
index 45dfea7c65874..0000000000000
--- a/development/openjdk/currencyexpire.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Nru openjdk.orig/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java openjdk/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java
---- openjdk.orig/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java 2015-01-17 19:19:33.000000000 +0200
-+++ openjdk/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java 2015-01-17 22:29:32.000000000 +0200
-@@ -281,8 +281,8 @@
- checkCurrencyCode(newCurrency);
- String timeString = currencyInfo.substring(4, length - 4);
- long time = format.parse(timeString).getTime();
-- if (Math.abs(time - System.currentTimeMillis()) > ((long) 10) * 365 * 24 * 60 * 60 * 1000) {
-- throw new RuntimeException("time is more than 10 years from present: " + time);
-+ if (Math.abs(time - System.currentTimeMillis()) > ((long) 20) * 365 * 24 * 60 * 60 * 1000) {
-+ throw new RuntimeException("time is more than 20 years from present: " + time);
- }
- specialCaseCutOverTimes[specialCaseCount] = time;
- specialCaseOldCurrencies[specialCaseCount] = oldCurrency;