dev-java/json-simple: remove unused patch(es)
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sat, 12 May 2018 15:45:10 +0000 (17:45 +0200)
committerJames Le Cuirot <chewi@gentoo.org>
Sun, 13 May 2018 09:38:15 +0000 (10:38 +0100)
Closes: https://github.com/gentoo/gentoo/pull/8377

dev-java/json-simple/files/json-simple-1.1-extra-constructors-from-azureus.patch [deleted file]

diff --git a/dev-java/json-simple/files/json-simple-1.1-extra-constructors-from-azureus.patch b/dev-java/json-simple/files/json-simple-1.1-extra-constructors-from-azureus.patch
deleted file mode 100644 (file)
index 5b45a97..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -Nur json_simple-1.1-all/src/org/json/simple/JSONArray.java json_simple-1.1-all_patched//src/org/json/simple/JSONArray.java
---- json_simple-1.1-all/src/org/json/simple/JSONArray.java     2009-02-01 12:45:34.000000000 +0200
-+++ json_simple-1.1-all_patched//src/org/json/simple/JSONArray.java    2011-09-25 11:23:37.398818358 +0300
-@@ -19,6 +19,18 @@
- public class JSONArray extends ArrayList implements List, JSONAware, JSONStreamAware {\r
-       private static final long serialVersionUID = 3957988303675231981L;\r
\r
-+      public JSONArray() {\r
-+              super();\r
-+      }\r
-+\r
-+      public JSONArray(java.util.Collection arg0) {\r
-+              super(arg0);\r
-+      }\r
-+\r
-+      public JSONArray(int initialCapacity) {\r
-+              super(initialCapacity);\r
-+      }\r
-+\r
-     /**\r
-      * Encode a list into JSON text and write it to out. \r
-      * If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behaviours will be ignored at this top level.\r
-diff -Nur json_simple-1.1-all/src/org/json/simple/JSONObject.java json_simple-1.1-all_patched//src/org/json/simple/JSONObject.java
---- json_simple-1.1-all/src/org/json/simple/JSONObject.java    2009-02-01 12:45:34.000000000 +0200
-+++ json_simple-1.1-all_patched//src/org/json/simple/JSONObject.java   2011-09-25 11:24:34.815103065 +0300
-@@ -18,6 +18,22 @@
- public class JSONObject extends HashMap implements Map, JSONAware, JSONStreamAware{\r
-       private static final long serialVersionUID = -503443796854799292L;\r
\r
-+      public JSONObject() {\r
-+              super();\r
-+      }\r
-+\r
-+      public JSONObject(int initialCapacity, float loadFactor) {\r
-+              super(initialCapacity, loadFactor);\r
-+      }\r
-+\r
-+      public JSONObject(int initialCapacity) {\r
-+              super(initialCapacity);\r
-+      }\r
-+\r
-+      public JSONObject(Map arg0) {\r
-+              super(arg0);\r
-+      }\r
-+\r
-     /**\r
-      * Encode a map into JSON text and write it to out.\r
-      * If this map is also a JSONAware or JSONStreamAware, JSONAware or JSONStreamAware specific behaviours will be ignored at this top level.\r