aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/awt/GridBagConstraints.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/awt/GridBagConstraints.java')
-rw-r--r--libjava/classpath/java/awt/GridBagConstraints.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/libjava/classpath/java/awt/GridBagConstraints.java b/libjava/classpath/java/awt/GridBagConstraints.java
index a6a64c3..8231300 100644
--- a/libjava/classpath/java/awt/GridBagConstraints.java
+++ b/libjava/classpath/java/awt/GridBagConstraints.java
@@ -191,14 +191,14 @@ public class GridBagConstraints implements Cloneable, Serializable
{
try
{
- GridBagConstraints g = (GridBagConstraints) super.clone ();
- g.insets = (Insets) insets.clone ();
- return g;
+ GridBagConstraints g = (GridBagConstraints) super.clone ();
+ g.insets = (Insets) insets.clone ();
+ return g;
}
catch (CloneNotSupportedException _)
{
- // Can't happen.
- return null;
+ // Can't happen.
+ return null;
}
}
@@ -226,10 +226,10 @@ public class GridBagConstraints implements Cloneable, Serializable
* parameters.
*/
public GridBagConstraints (int gridx, int gridy,
- int gridwidth, int gridheight,
- double weightx, double weighty,
- int anchor, int fill,
- Insets insets, int ipadx, int ipady)
+ int gridwidth, int gridheight,
+ double weightx, double weighty,
+ int anchor, int fill,
+ Insets insets, int ipadx, int ipady)
{
this.anchor = anchor;
this.fill = fill;