remove extra semi colons
This commit is contained in:
parent
d655375bc0
commit
5edd30c14a
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user