Skip to content

Commit

Permalink
chore: remove duplicate condition in SimpleComponentDescriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyashsaitwal committed Jul 21, 2024
1 parent fbdb39c commit a0abae4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,6 @@ public static MockComponent createMockComponent(String name, String type, Simple
return new MockLabel(editor);
} else if (name.equals(MockListView.TYPE)) {
return new MockListView(editor);
} else if (name.equals(MockListView.TYPE)) {
return new MockListView(editor);
} else if (name.equals(MockSlider.TYPE)) {
return new MockSlider(editor);
} else if (name.equals(MockPasswordTextBox.TYPE)) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.google.appinventor.client.utils.jstypes;

import jsinterop.annotations.JsConstructor;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;

Expand Down

0 comments on commit a0abae4

Please sign in to comment.