remove extra semi colons

This commit is contained in:
2019-01-04 11:48:31 -03:00
parent d655375bc0
commit 5edd30c14a

View File

@@ -37,15 +37,15 @@ namespace Sernatur {
} }
public string get_string_n (int tup_num, string name) throws Field { public string get_string_n (int tup_num, string name) throws Field {
return get_string_v (tup_num, check_field_found (result.get_field_number (name), name));; return get_string_v (tup_num, check_field_found (result.get_field_number (name), name));
} }
public int get_int_n (int tup_num, string name) throws Field { public int get_int_n (int tup_num, string name) throws Field {
return get_int_v (tup_num, check_field_found (result.get_field_number (name), name));; return get_int_v (tup_num, check_field_found (result.get_field_number (name), name));
} }
public float get_float_n (int tup_num, string name) throws Field { public float get_float_n (int tup_num, string name) throws Field {
return get_float_v (tup_num, check_field_found (result.get_field_number (name), name));; return get_float_v (tup_num, check_field_found (result.get_field_number (name), name));
} }
public double get_double_n (int tup_num, string name) throws Field { public double get_double_n (int tup_num, string name) throws Field {