Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.48 KB | None | 0 0
  1.  public void save()
  2.     throws FileNotFoundException, IOException
  3.   {
  4.     DataOutputStream out = new DataOutputStream(new FileOutputStream(this.file, false));
  5.     Throwable localThrowable3 = null;
  6.     try
  7.     {
  8.       out.writeShort(this.x);
  9.       out.writeShort(this.y);
  10.       out.writeInt(this.textColor);
  11.       out.writeBoolean(this.showingMouseButtons);
  12.       out.writeBoolean(this.enabled);
  13.       out.writeBoolean(this.keepKeysColor);
  14.     }
  15.     catch (Throwable var15)
  16.     {
  17.       Throwable localThrowable4 = var15;
  18.       localThrowable3 = var15;
  19.       try
  20.       {
  21.         throw localThrowable4;
  22.       }
  23.       catch (Throwable var16)
  24.       {
  25.         var16.printStackTrace();
  26.         if (out == null) {
  27.           return;
  28.         }
  29.         if (localThrowable3 != null)
  30.         {
  31.           try
  32.           {
  33.             out.close();
  34.           }
  35.           catch (Throwable localThrowable3) {}
  36.           return;
  37.         }
  38.         out.close();
  39.         if (out == null) {
  40.           return;
  41.         }
  42.       }
  43.       if (localThrowable3 != null) {
  44.         try
  45.         {
  46.           out.close();
  47.         }
  48.         catch (Throwable localThrowable5) {}
  49.       } else {
  50.         out.close();
  51.       }
  52.     }
  53.     finally
  54.     {
  55.       if (out != null) {
  56.         if (localThrowable3 != null) {
  57.           try
  58.           {
  59.             out.close();
  60.           }
  61.           catch (Throwable localThrowable6) {}
  62.         } else {
  63.           out.close();
  64.         }
  65.       }
  66.     }
  67.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement