Skip to content

Commit

Permalink
Merge pull request #249 from RobertBColton/16b5
Browse files Browse the repository at this point in the history
Fixes formatting mistake
  • Loading branch information
RobertBColton committed Feb 2, 2016
2 parents bba54f5 + 7ce3e23 commit db1e154
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions org/lateralgm/subframes/BackgroundFrame.java
Expand Up @@ -399,14 +399,14 @@ public void updated(UpdateEvent e)
{
if (fis != null)
{
try
{
fis.close();
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
try
{
fis.close();
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
}
}
res.setBackgroundImage(img);
Expand Down
16 changes: 8 additions & 8 deletions org/lateralgm/subframes/SpriteFrame.java
Expand Up @@ -1086,14 +1086,14 @@ public void updated(UpdateEvent e)
{
if (fis != null)
{
try
{
fis.close();
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
try
{
fis.close();
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
}
}
res.subImages.replace(image,img);
Expand Down

0 comments on commit db1e154

Please sign in to comment.