diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-15 17:34:07 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-15 18:01:34 +0200 |
commit | 89ce9a6f4694711e383c3d3e42141d176a12529e (patch) | |
tree | fca02b5294d1d31f319c54fad683845ec0bac15a /modules/mono/editor | |
parent | d4178bec1f1fc0770e8d270444f446df2c4fa105 (diff) |
Mono: Fix -Wduplicated-branches warning
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/bindings_generator.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp index cd7774e7a1..2d618f7891 100644 --- a/modules/mono/editor/bindings_generator.cpp +++ b/modules/mono/editor/bindings_generator.cpp @@ -2536,13 +2536,8 @@ void BindingsGenerator::_default_argument_from_variant(const Variant &p_val, Arg switch (p_val.get_type()) { case Variant::NIL: - if (ClassDB::class_exists(r_iarg.type.cname)) { - // Object type - r_iarg.default_argument = "null"; - } else { - // Variant - r_iarg.default_argument = "null"; - } + // Either Object type or Variant + r_iarg.default_argument = "null"; break; // Atomic types case Variant::BOOL: |