[go: nahoru, domu]

Skip to content

Commit

Permalink
http: Move api.client.testing.json to avoid package collision
Browse files Browse the repository at this point in the history
  • Loading branch information
ngmiceli-g committed Apr 22, 2013
1 parent 0bfcee1 commit 0ec278c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<!-- Don't check Base64.java because it was copied from anther project. -->
<suppress checks="." files="Base64.java"/>

<!-- Don't check JavaDoc on tests in com.google.api.testing.json. -->
<suppress checks="JavadocType" files="com/google/api/client/testing/json/.*Test.java"/>
<!-- Don't check JavaDoc on tests in com.google.api.test.json. -->
<suppress checks="JavadocType" files="com/google/api/client/test/json/.*Test.java"/>

<!-- Don't check JavaDoc on package-info. -->
<suppress checks="JavadocStyleCheck" files="package-info.java"/>
Expand Down
4 changes: 4 additions & 0 deletions clirr-ignored-differences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,8 @@
<differenceType>8001</differenceType>
<className>com/google/api/client/http/MultipartRelatedContent</className>
</difference>
<difference>
<differenceType>8001</differenceType>
<className>com/google/api/client/testing/json/**</className>
</difference>
</differences>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
package com.google.api.client.extensions.android.json;

import com.google.api.client.json.JsonFactory;
import com.google.api.client.testing.json.AbstractJsonFactoryTest;
import com.google.api.client.test.json.AbstractJsonFactoryTest;

import java.util.ArrayList;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.JsonParser;
import com.google.api.client.testing.json.AbstractJsonFactoryTest;
import com.google.api.client.test.json.AbstractJsonFactoryTest;
import com.google.common.base.Charsets;

import java.io.ByteArrayInputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.JsonParser;
import com.google.api.client.testing.json.AbstractJsonFactoryTest;
import com.google.api.client.test.json.AbstractJsonFactoryTest;
import com.google.api.client.util.StringUtils;
import com.google.common.base.Charsets;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.JsonParser;
import com.google.api.client.testing.json.AbstractJsonFactoryTest;
import com.google.api.client.test.json.AbstractJsonFactoryTest;
import com.google.api.client.util.StringUtils;
import com.google.common.base.Charsets;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* the License.
*/

package com.google.api.client.testing.json;
package com.google.api.client.test.json;

import com.google.api.client.http.json.JsonHttpContent;
import com.google.api.client.json.GenericJson;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
* @author Ravi Mistry
*/

package com.google.api.client.testing.json;
package com.google.api.client.test.json;

0 comments on commit 0ec278c

Please sign in to comment.