@nativescript-community/text 1.6.20 → 1.6.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/text",
3
- "version": "1.6.20",
3
+ "version": "1.6.21",
4
4
  "description": "Expands the capabilities of NativeScript's text property.",
5
5
  "main": "./index",
6
6
  "sideEffects": false,
@@ -37,5 +37,5 @@
37
37
  },
38
38
  "license": "Apache-2.0",
39
39
  "readmeFilename": "README.md",
40
- "gitHead": "b181658dc1ad1df249c02d5be994b286be0c52ff"
40
+ "gitHead": "9eea57034453c0d613d8c04909546861abc21d83"
41
41
  }
@@ -15,7 +15,6 @@ public class HeightSpan implements LineHeightSpan {
15
15
  private final int mHeight;
16
16
 
17
17
  public HeightSpan(float height) {
18
- Log.d("JS", "HeightSpan " + height);
19
18
  this.mHeight = (int) Math.ceil(height);
20
19
  }
21
20
  public int getHeight() {