Index: src/libictranslate/config_property.cpp
===================================================================
diff -u -N -r8068e0c351055554340ac9755d1bc846893bf2b8 -r9ddf8fdd5f641491dd30c49eb90f8f740314b6af
--- src/libictranslate/config_property.cpp	(.../config_property.cpp)	(revision 8068e0c351055554340ac9755d1bc846893bf2b8)
+++ src/libictranslate/config_property.cpp	(.../config_property.cpp)	(revision 9ddf8fdd5f641491dd30c49eb90f8f740314b6af)
@@ -445,8 +445,8 @@
 		assert(stIndex < m_paStrings->size());
 		return m_paStrings->at(stIndex).c_str();
 	}
-	else
-		return m_val.pszVal;
+
+	return m_val.pszVal;
 }
 
 /** Sets a signed number property value.
@@ -524,8 +524,8 @@
 		assert(stIndex < m_paSigneds->size());
 		return m_paSigneds->at(stIndex);
 	}
-	else
-		return m_val.llVal;
+
+	return m_val.llVal;
 }
 
 /** Sets an unsigned number property value.
@@ -603,8 +603,8 @@
 		assert(stIndex < m_paUnsigneds->size());
 		return m_paUnsigneds->at(stIndex);
 	}
-	else
-		return m_val.ullVal;
+
+	return m_val.ullVal;
 }
 
 /** Sets a bool property value.
@@ -663,8 +663,8 @@
 		assert(stIndex < m_paBools->size());
 		return m_paBools->at(stIndex);
 	}
-	else
-		return m_val.bVal;
+
+	return m_val.bVal;
 }
 
 /** Retrieves the property count for this property.
@@ -690,8 +690,8 @@
 			return 0;
 		}
 	}
-	else
-		return 1;
+
+	return 1;
 }
 
 /** Removes a property value at a given index.
@@ -887,8 +887,8 @@
 		_tcscpy(psz, pszSrc);
 		return psz;
 	}
-	else
-		return nullptr;
+
+	return nullptr;
 }
 
 /** Converts a string to a boolean value.