mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +03:00
Change 'return ;' to 'return;'; remove space.
This commit is contained in:
@ -648,7 +648,7 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
|
||||
if (x == null)
|
||||
{
|
||||
setNull(parameterIndex, Types.OTHER);
|
||||
return ;
|
||||
return;
|
||||
}
|
||||
switch (targetSqlType)
|
||||
{
|
||||
@ -718,7 +718,7 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
|
||||
if (x == null)
|
||||
{
|
||||
setNull(parameterIndex, Types.OTHER);
|
||||
return ;
|
||||
return;
|
||||
}
|
||||
if (x instanceof String)
|
||||
setString(parameterIndex, (String)x);
|
||||
|
Reference in New Issue
Block a user