mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-18 08:20:52 -07:00
Moves src folder to simplify build.gradle configuration. If JSON-Java source is merged, it's src fold would now be src/main/java/org.json/ instead of src/main/org.json as well.
This commit is contained in:
parent
0e0f3f2167
commit
80f9e48e64
25 changed files with 8 additions and 15 deletions
11
src/test/java/org/json/junit/MyBigNumberBean.java
Normal file
11
src/test/java/org/json/junit/MyBigNumberBean.java
Normal file
|
@ -0,0 +1,11 @@
|
|||
package org.json.junit;
|
||||
|
||||
import java.math.*;
|
||||
|
||||
/**
|
||||
* Used in testing when a Bean containing big numbers is needed
|
||||
*/
|
||||
interface MyBigNumberBean {
|
||||
public BigInteger getBigInteger();
|
||||
public BigDecimal getBigDecimal();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue