Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 24d2b26

Browse files
committed
Remove extraneous blank lines before block-closing braces
These are useless and distracting. We wouldn't have written the code with them to begin with, so there's no reason to keep them. Author: Justin Pryzby <[email protected]> Discussion: https://postgr.es/m/[email protected] Discussion: https://postgr.es/m/attachment/133167/0016-Extraneous-blank-lines.patch
1 parent ed0fbc8 commit 24d2b26

File tree

100 files changed

+2
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+2
-138
lines changed

contrib/btree_gist/btree_bit.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ gbt_bit_l2n(GBT_VARKEY *leaf, FmgrInfo *flinfo)
104104
pfree(o);
105105

106106
return out;
107-
108107
}
109108

110109
static const gbtree_vinfo tinfo =

contrib/btree_gist/btree_cash.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ gbt_cash_penalty(PG_FUNCTION_ARGS)
195195
penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
196196

197197
PG_RETURN_POINTER(result);
198-
199198
}
200199

201200
Datum

contrib/btree_gist/btree_float4.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ gbt_float4_penalty(PG_FUNCTION_ARGS)
190190
penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
191191

192192
PG_RETURN_POINTER(result);
193-
194193
}
195194

196195
Datum

contrib/btree_gist/btree_float8.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ gbt_float8_penalty(PG_FUNCTION_ARGS)
197197
penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
198198

199199
PG_RETURN_POINTER(result);
200-
201200
}
202201

203202
Datum

contrib/btree_gist/btree_inet.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ gbt_inet_penalty(PG_FUNCTION_ARGS)
165165
penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
166166

167167
PG_RETURN_POINTER(result);
168-
169168
}
170169

171170
Datum

contrib/btree_gist/btree_interval.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ gbt_intv_compress(PG_FUNCTION_ARGS)
173173
}
174174

175175
PG_RETURN_POINTER(retval);
176-
177176
}
178177

179178
Datum
@@ -276,7 +275,6 @@ gbt_intv_penalty(PG_FUNCTION_ARGS)
276275
penalty_num(result, iorg[0], iorg[1], inew[0], inew[1]);
277276

278277
PG_RETURN_POINTER(result);
279-
280278
}
281279

282280
Datum

contrib/btree_gist/btree_macaddr.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ gbt_macad_penalty(PG_FUNCTION_ARGS)
174174
penalty_num(result, iorg[0], iorg[1], inew[0], inew[1]);
175175

176176
PG_RETURN_POINTER(result);
177-
178177
}
179178

180179
Datum

contrib/btree_gist/btree_macaddr8.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ gbt_macad8_penalty(PG_FUNCTION_ARGS)
174174
penalty_num(result, iorg[0], iorg[1], inew[0], inew[1]);
175175

176176
PG_RETURN_POINTER(result);
177-
178177
}
179178

180179
Datum

contrib/btree_gist/btree_ts.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,6 @@ gbt_ts_penalty(PG_FUNCTION_ARGS)
377377
penalty_num(result, orgdbl[0], orgdbl[1], newdbl[0], newdbl[1]);
378378

379379
PG_RETURN_POINTER(result);
380-
381380
}
382381

383382

contrib/dblink/dblink.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,6 @@ materializeResult(FunctionCallInfo fcinfo, PGconn *conn, PGresult *res)
10041004

10051005
/* clean up GUC settings, if we changed any */
10061006
restoreLocalGucs(nestlevel);
1007-
10081007
}
10091008
}
10101009
PG_FINALLY();
@@ -2635,7 +2634,6 @@ deleteConnection(const char *name)
26352634
ereport(ERROR,
26362635
(errcode(ERRCODE_UNDEFINED_OBJECT),
26372636
errmsg("undefined connection name")));
2638-
26392637
}
26402638

26412639
static void

0 commit comments

Comments
 (0)