remove extra semi colons

This commit is contained in:
Chris Cromer 2019-01-04 11:48:31 -03:00
parent d655375bc0
commit 5edd30c14a
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
1 changed files with 3 additions and 3 deletions

View File

@ -37,15 +37,15 @@ namespace Sernatur {
}
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 {
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 {
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 {