Skip to content

Commit 9e74536

Browse files
javier-godoymlopezFC
authored andcommitted
fix(demo): correct source URL
1 parent d5d77b7 commit 9e74536

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/test/java/com/flowingcode/vaadin/addons/demo/Demo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class Demo extends TabbedDemo {
2929

3030
public Demo() {
3131
final String sourceCodeUrl =
32-
"https://github.com/FlowingCode/CommonsDemo/blob/master/src/test/java/com/flowingcode/vaadin/addons/demo/impl/Demo.java";
32+
"https://github.com/FlowingCode/CommonsDemo/blob/master/src/test/java/com/flowingcode/vaadin/addons/demo/Demo.java";
3333
VerticalLayout vl = new VerticalLayout();
3434
VerticalLayout vl2 = new VerticalLayout();
3535
VerticalLayout vl3 = new VerticalLayout();

src/test/java/com/flowingcode/vaadin/addons/demo/SampleDemo.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@
2525

2626
@PageTitle("Demo 4")
2727
@DemoSource(
28-
"https://github.com/FlowingCode/CommonsDemo/blob/master/src/test/java/com/flowingcode/vaadin/addons/demo/impl/SampleDemo.java")
28+
"https://github.com/FlowingCode/CommonsDemo/blob/master/src/test/java/com/flowingcode/vaadin/addons/demo/SampleDemo.java")
2929
public class SampleDemo extends Div {
3030

3131
public SampleDemo() {
3232
add(new Span("Demo component with annotations"));
3333
}
34+
3435
}

0 commit comments

Comments
 (0)