mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-04 00:08:09 -07:00
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
49 lines
1.9 KiB
Diff
49 lines
1.9 KiB
Diff
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 {
|
|
private static final long serialVersionUID = 3957988303675231981L;
|
|
|
|
+ public JSONArray() {
|
|
+ super();
|
|
+ }
|
|
+
|
|
+ public JSONArray(java.util.Collection arg0) {
|
|
+ super(arg0);
|
|
+ }
|
|
+
|
|
+ public JSONArray(int initialCapacity) {
|
|
+ super(initialCapacity);
|
|
+ }
|
|
+
|
|
/**
|
|
* Encode a list into JSON text and write it to out.
|
|
* If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behaviours will be ignored at this top level.
|
|
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{
|
|
private static final long serialVersionUID = -503443796854799292L;
|
|
|
|
+ public JSONObject() {
|
|
+ super();
|
|
+ }
|
|
+
|
|
+ public JSONObject(int initialCapacity, float loadFactor) {
|
|
+ super(initialCapacity, loadFactor);
|
|
+ }
|
|
+
|
|
+ public JSONObject(int initialCapacity) {
|
|
+ super(initialCapacity);
|
|
+ }
|
|
+
|
|
+ public JSONObject(Map arg0) {
|
|
+ super(arg0);
|
|
+ }
|
|
+
|
|
/**
|
|
* Encode a map into JSON text and write it to out.
|
|
* If this map is also a JSONAware or JSONStreamAware, JSONAware or JSONStreamAware specific behaviours will be ignored at this top level.
|