Sfoglia il codice sorgente

Ignore windows binaries in git

tags/0.6.3m1rc1
Gregory Holmes 15 anni fa
parent
commit
752cccf70d

+ 1
- 0
.gitignore Vedi File

@@ -12,5 +12,6 @@
12 12
 /installer/windows/*.inc
13 13
 /installer/windows/*.ico
14 14
 /installer/windows/DMDirc.jar
15
+/installer/windows/*.exe
15 16
 .svn
16 17
 *.class

+ 7
- 7
src/com/dmdirc/addons/ui_swing/components/frames/TextFrame.java Vedi File

@@ -1,4 +1,4 @@
1
-/*
1
+    /*
2 2
  * Copyright (c) 2006-2009 Chris Smith, Shane Mc Cormack, Gregory Holmes
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -521,7 +521,7 @@ public abstract class TextFrame extends JInternalFrame implements Window,
521 521
     @Override
522 522
     public void internalFrameDeiconified(final InternalFrameEvent event) {
523 523
         //Ignore.
524
-    }
524
+        }
525 525
 
526 526
     /**
527 527
      * Activates the input field on frame focus. {@inheritDoc}
@@ -658,7 +658,7 @@ public abstract class TextFrame extends JInternalFrame implements Window,
658 658
     @Override
659 659
     public void mouseEntered(final MouseEvent mouseEvent) {
660 660
         //Ignore.
661
-    }
661
+        }
662 662
 
663 663
     /**
664 664
      * {@inheritDoc}
@@ -668,7 +668,7 @@ public abstract class TextFrame extends JInternalFrame implements Window,
668 668
     @Override
669 669
     public void mouseExited(final MouseEvent mouseEvent) {
670 670
         //Ignore.
671
-    }
671
+        }
672 672
 
673 673
     /**
674 674
      * Processes every mouse button event to check for a popup trigger.
@@ -904,7 +904,7 @@ public abstract class TextFrame extends JInternalFrame implements Window,
904 904
     @Override
905 905
     public void keyTyped(final KeyEvent event) {
906 906
         //Ignore.
907
-    }
907
+        }
908 908
 
909 909
     /** 
910 910
      * {@inheritDoc}
@@ -928,7 +928,7 @@ public abstract class TextFrame extends JInternalFrame implements Window,
928 928
     @Override
929 929
     public void keyReleased(final KeyEvent event) {
930 930
         //Ignore.
931
-    }
931
+        }
932 932
 
933 933
     /**
934 934
      * Gets the search bar.
@@ -1068,7 +1068,7 @@ public abstract class TextFrame extends JInternalFrame implements Window,
1068 1068
                     TextFrame.super.setMaximum(b);
1069 1069
                 } catch (PropertyVetoException ex) {
1070 1070
                     //Ignore
1071
-                }
1071
+                    }
1072 1072
             }
1073 1073
         });
1074 1074
     }

Loading…
Annulla
Salva