Skip to content

Commit 523e4be

Browse files
committed
Fix incorrect method call
1 parent a4afa9a commit 523e4be

File tree

1 file changed

+1
-1
lines changed
  • vaadin-maps-leaflet-flow/src/main/java/software/xdev/vaadin/maps/leaflet/base

1 file changed

+1
-1
lines changed

vaadin-maps-leaflet-flow/src/main/java/software/xdev/vaadin/maps/leaflet/base/LEvented.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ default S once(final String type, final String function, final String context)
103103
*/
104104
default S once(final String type, final String function)
105105
{
106-
return this.on(type, function, null);
106+
return this.once(type, function, null);
107107
}
108108

109109
/**

0 commit comments

Comments
 (0)