Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit de43583

Browse files
committed
address comments
1 parent f11e95b commit de43583

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/widget/ConstraintSet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4585,7 +4585,7 @@ public void load(Context context, XmlPullParser parser) {
45854585
case XmlResourceParser.START_TAG:
45864586
tagName = parser.getName();
45874587
if (DEBUG) {
4588-
Log.v(TAG, Debug.getLoc() +" " +document+ " tagName=" + tagName);
4588+
Log.v(TAG, Debug.getLoc() + " " + document + " tagName=" + tagName);
45894589
}
45904590
switch (tagName) {
45914591
case "Constraint":

constraintlayout/core/src/main/java/androidx/constraintlayout/core/LinearSystem.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ private int optimize(Row goal, boolean b) {
767767
System.out.println("\n****************************");
768768
System.out.println("* OPTIMIZATION *");
769769
System.out.println("* mNumColumns: " + mNumColumns);
770-
System.out.println("* GOAL: " + goal+ " "+ b);
770+
System.out.println("* GOAL: " + goal + " " + b);
771771
System.out.println("****************************\n");
772772
}
773773

0 commit comments

Comments
 (0)