]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
no more trailing tabs. checkstyle test
authorbeutel <beutel>
Thu, 6 Sep 2007 12:21:34 +0000 (12:21 +0000)
committerbeutel <beutel>
Thu, 6 Sep 2007 12:21:34 +0000 (12:21 +0000)
apps/Oscilloscope/java/Oscilloscope.java
apps/Oscilloscope/java/Window.java

index 271d04dd5fbf26eca9070c57dc7936fdda9f6949..40e6863afb8cc245c81145da9a73e7dde03dbc9d 100644 (file)
@@ -63,7 +63,7 @@ public class Oscilloscope implements MessageListener
     }
 
     public synchronized void messageReceived(int dest_addr, 
-               Message msg) {
+            Message msg) {
     if (msg instanceof OscilloscopeMsg) {
         OscilloscopeMsg omsg = (OscilloscopeMsg)msg;
 
index a132ecef751fd60be70d7d5ca8408a7a45dfb3cb..61859994a4df71d2a2910d5e606b0f129933fea6 100644 (file)
@@ -67,9 +67,9 @@ class Window {
             return getValueAt(0, col).getClass();
         }
     public boolean isCellEditable(int row, 
-               int col) { return col == 1; }
+            int col) { return col == 1; }
         public synchronized void setValueAt(Object value, 
-                       int row, int col) {
+                  int row, int col) {
         colors.set(row, value);
             fireTableCellUpdated(row, col);
         graph.repaint();
@@ -163,7 +163,7 @@ class Window {
     JTable moteList = new JTable(moteListModel);
     moteList.setDefaultRenderer(Color.class, new MoteColor());
     moteList.setDefaultEditor(Color.class, 
-               new ColorCellEditor("Pick Mote Color"));
+              new ColorCellEditor("Pick Mote Color"));
     moteList.setPreferredScrollableViewportSize(new Dimension(100, 400));
     JScrollPane motePanel = new JScrollPane();
     motePanel.getViewport().add(moteList, null);
@@ -260,10 +260,10 @@ class Window {
 
         if (!graph.setYAxis(Integer.parseInt(min), Integer.parseInt(max))) {
             error("Invalid range " 
-                       + min 
-                       + " - " 
-                       + max 
-                       + " (expected values between 0 and 65535)");
+                      + min 
+                      + " - " 
+                      + max 
+                      + " (expected values between 0 and 65535)");
         }
         return;
         }