aboutsummaryrefslogtreecommitdiff
path: root/src/guiFormSpecMenu.h
diff options
context:
space:
mode:
authorQrchackOfficial <qrchackofficial@gmail.com>2017-06-05 01:52:55 +0200
committerShadowNinja <shadowninja@minetest.net>2017-06-10 21:04:47 -0400
commit5cc8ad946efb3612eb6ea8655780b29fe4c62e19 (patch)
treed0edc2fa46e654e7443bedba942b1ec77ac4fef5 /src/guiFormSpecMenu.h
parent7bfd53ba587a1be71c1f8b3ebc3208d59f4da9c1 (diff)
downloadminetest-5cc8ad946efb3612eb6ea8655780b29fe4c62e19.tar.gz
minetest-5cc8ad946efb3612eb6ea8655780b29fe4c62e19.tar.bz2
minetest-5cc8ad946efb3612eb6ea8655780b29fe4c62e19.zip
Remove superfluous pointer null checks
Diffstat (limited to 'src/guiFormSpecMenu.h')
-rw-r--r--src/guiFormSpecMenu.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/guiFormSpecMenu.h b/src/guiFormSpecMenu.h
index bf0b4f356..d08bb4ab5 100644
--- a/src/guiFormSpecMenu.h
+++ b/src/guiFormSpecMenu.h
@@ -310,18 +310,14 @@ public:
// form_src is deleted by this GUIFormSpecMenu
void setFormSource(IFormSource *form_src)
{
- if (m_form_src != NULL) {
- delete m_form_src;
- }
+ delete m_form_src;
m_form_src = form_src;
}
// text_dst is deleted by this GUIFormSpecMenu
void setTextDest(TextDest *text_dst)
{
- if (m_text_dst != NULL) {
- delete m_text_dst;
- }
+ delete m_text_dst;
m_text_dst = text_dst;
}