Skip to content

Commit

Permalink
Introduces temporary formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MaicolAntali committed Nov 4, 2023
1 parent c81983c commit 61fd5a2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion gson/src/main/java/com/google/gson/Gson.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicLongArray;

// Temporary unused import
import java.math.RoundingMode;

/**
* This is the main class for using Gson. Gson is typically used by first constructing a
* Gson instance and then invoking {@link #toJson(Object)} or {@link #fromJson(String, Class)}
Expand Down Expand Up @@ -147,7 +150,13 @@
* @author Joel Leitch
* @author Jesse Wilson
*/
public final class Gson {

// Temporary formatting issue
public
final
class Gson

{
static final boolean DEFAULT_JSON_NON_EXECUTABLE = false;
// Strictness of `null` is the legacy mode where some Gson APIs are always lenient
static final Strictness DEFAULT_STRICTNESS = null;
Expand Down

0 comments on commit 61fd5a2

Please sign in to comment.