Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 19b9127

Browse files
committed
injectJson -> setJson
1 parent 75a316c commit 19b9127

File tree

15 files changed

+36
-33
lines changed

15 files changed

+36
-33
lines changed

‎.idea/workspace.xml

Lines changed: 13 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/com/inzapp/jsonToSqlParser/core/Parser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
public class Parser extends JsonManager {
1010
public String parse(JSONObject json) {
11-
injectJson(json);
11+
setJson(json);
1212

1313
Statement statement;
1414
String crud = getFromJson(JsonKey.CRUD).get(0);
@@ -40,7 +40,7 @@ public String parse(JSONObject json) {
4040
}
4141

4242
public String parse(JSONObject json, boolean exceptUnion) {
43-
injectJson(json);
43+
setJson(json);
4444

4545
Statement statement;
4646
String crud = getFromJson(JsonKey.CRUD).get(0);

‎src/com/inzapp/jsonToSqlParser/core/crudParser/DeleteParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class DeleteParser extends JsonManager {
1515
private Delete delete = new Delete();
1616

1717
public Delete parse(JSONObject json) {
18-
injectJson(json);
18+
setJson(json);
1919
addTable();
2020
addWhere();
2121
return delete;

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /