File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/main/java/gwt/material/design/client/ui Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 33 <parent >
44 <artifactId >gwt-material-parent</artifactId >
55 <groupId >com.github.gwtmaterialdesign</groupId >
6- <version >1.5.2 </version >
6+ <version >1.5.3 </version >
77 </parent >
88 <modelVersion >4.0.0</modelVersion >
99
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public MaterialSwitch(boolean value) {
8383 @ Override
8484 protected void onLoad () {
8585 super .onLoad ();
86- if (!offLabel .getText ().isEmpty ()) {
86+ if (offLabel . getText () != null && !offLabel .getText ().isEmpty ()) {
8787 label .add (offLabel );
8888 }
8989 label .add (input );
@@ -102,7 +102,7 @@ public void onClick(ClickEvent event) {
102102 event .stopPropagation ();
103103 }
104104 });
105- if (!onLabel .getText ().isEmpty ()) {
105+ if (onLabel . getText () != null && !onLabel .getText ().isEmpty ()) {
106106 label .add (onLabel );
107107 }
108108 }
Original file line number Diff line number Diff line change 55 <groupId >com.github.gwtmaterialdesign</groupId >
66 <artifactId >gwt-material-parent</artifactId >
77 <packaging >pom</packaging >
8- <version >1.5.2 </version >
8+ <version >1.5.3 </version >
99
1010 <modules >
1111 <module >gwt-material</module >
6262 <
connection >scm:git:
[email protected] :GwtMaterialDesign/gwt-material.git</
connection >
6363 <
developerConnection >scm:git:
[email protected] :GwtMaterialDesign/gwt-material.git</
developerConnection >
6464 <url >http://github.com/GwtMaterialDesign/gwt-material</url >
65- <tag >v1.5.2 </tag >
65+ <tag >v1.5.3 </tag >
6666 </scm >
6767
6868 <licenses >
You can’t perform that action at this time.
0 commit comments