Skip to content

Commit

Permalink
Improve variable names in user guide (google#2290)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4aaf138)
  • Loading branch information
Marcono1234 authored and tibor-universe committed Jan 18, 2023
1 parent 434dc01 commit fbd40ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ int[] values = { 1 };
gson.toJson(values); // ==> [1]

// Deserialization
int one = gson.fromJson("1", int.class);
Integer one = gson.fromJson("1", Integer.class);
Long one = gson.fromJson("1", Long.class);
Boolean false = gson.fromJson("false", Boolean.class);
int i = gson.fromJson("1", int.class);
Integer intObj = gson.fromJson("1", Integer.class);
Long longObj = gson.fromJson("1", Long.class);
Boolean boolObj = gson.fromJson("false", Boolean.class);
String str = gson.fromJson("\"abc\"", String.class);
String[] anotherStr = gson.fromJson("[\"abc\"]", String[].class);
String[] strArray = gson.fromJson("[\"abc\"]", String[].class);
```

### Object Examples
Expand Down Expand Up @@ -482,7 +482,7 @@ class MyList<T> extends ArrayList<T> {
}

class MyListInstanceCreator implements InstanceCreator<MyList<?>> {
@SuppressWarnings("unchecked")
@SuppressWarnings("unchecked")
public MyList<?> createInstance(Type type) {
// No need to use a parameterized list since the actual instance will have the raw type anyway.
return new MyList();
Expand Down

0 comments on commit fbd40ec

Please sign in to comment.