mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Change 'return ;' to 'return;'; remove space.
This commit is contained in:
@ -613,7 +613,7 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
|
||||
if (x == null)
|
||||
{
|
||||
setNull(parameterIndex, Types.OTHER);
|
||||
return ;
|
||||
return;
|
||||
}
|
||||
switch (targetSqlType)
|
||||
{
|
||||
@ -683,7 +683,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