]> source.dussan.org Git - aspectj.git/commitdiff
tidying up compiler warnings (unused locals, imports)
authoracolyer <acolyer>
Fri, 23 Jan 2004 10:07:16 +0000 (10:07 +0000)
committeracolyer <acolyer>
Fri, 23 Jan 2004 10:07:16 +0000 (10:07 +0000)
ajbrowser/src/org/aspectj/tools/ajbrowser/BasicEditor.java
ajbrowser/src/org/aspectj/tools/ajbrowser/BrowserManager.java
ajbrowser/src/org/aspectj/tools/ajbrowser/TopFrame.java

index 8913b2109ca0008a52edae38b56a6310bcf7ad6f..95d5c9135faea6dba233b5a90abae4cabf087457 100644 (file)
@@ -22,7 +22,7 @@ import java.io.File;
 import java.io.FileReader;
 import java.io.FileWriter;
 import java.io.IOException;
-import java.net.URL;
+//import java.net.URL;
 
 import javax.swing.JEditorPane;
 import javax.swing.JPanel;
@@ -90,7 +90,6 @@ public class BasicEditor implements EditorAdapter {
     public void showSourceLine(String filePath, int lineNumber, boolean highlight) {
        //AjdeUIManager.getDefault().getIdeUIAdapter().resetEditor();
         
-        String oldPath = this.filePath;
         this.filePath = filePath;
 //        if (oldPath != filePath && !Ajde.INSTANCE.BROWSER_MANAGER.isGlobalMode()) {
 //            Ajde.INSTANCE.BROWSER_MANAGER.updateView();
@@ -145,7 +144,7 @@ public class BasicEditor implements EditorAdapter {
 
     private String readFile(String filePath, int lineNumber) {
         try {
-            URL url = ClassLoader.getSystemResource(filePath);
+//            URL url = ClassLoader.getSystemResource(filePath);
             File file = new File(filePath);
             if (!file.exists()) {
                 return "ERROR: file \"" + filePath + "\" does not exist.";
@@ -153,7 +152,6 @@ public class BasicEditor implements EditorAdapter {
             BufferedReader reader = new BufferedReader(new FileReader(file));
             StringBuffer contents = new StringBuffer();
             String line = reader.readLine();
-            int numChars = 0;
             int numLines = 0;
             while (line != null) {
                 numLines++;
index 826ca92991cc293a19c5c3c12a6382f3e229bf73..8227c7fd00b048225c8c92a0003901d8569e4042 100644 (file)
@@ -24,7 +24,7 @@ import org.aspectj.ajde.ui.*;
 import org.aspectj.ajde.ui.internal.UserPreferencesStore;
 import org.aspectj.ajde.ui.swing.*;
 import org.aspectj.asm.*;
-import org.aspectj.asm.internal.*;
+//import org.aspectj.asm.internal.*;
 
 /**
  * IDE manager for standalone AJDE application.
@@ -216,7 +216,6 @@ public class BrowserManager {
                public void compileStarted(String buildConfigFile) { }
                
         public void compileFinished(String buildConfigFile, int buildTime, boolean succeeded, boolean warnings) {
-            int timeInSeconds = buildTime/1000;
             if (succeeded && !warnings) {
                 hideMessages();
             } else {
index 5fa109e6a062e33bd12eede3aba8422b549b4cb0..e592db5d02c6e962550f8bb7ee5d5f79ad979e0f 100644 (file)
@@ -51,8 +51,8 @@ public class TopFrame extends JFrame {
     private JMenuItem jMenuItem1 = new JMenuItem();
     private JMenuItem exit_menuItem = new JMenuItem();
     private JSplitPane top_splitPane = new JSplitPane();
-    private BorderLayout borderLayout2 = new BorderLayout();
-    private BorderLayout borderLayout1 = new BorderLayout();
+//    private BorderLayout borderLayout2 = new BorderLayout();
+//    private BorderLayout borderLayout1 = new BorderLayout();
     private BorderLayout borderLayout3 = new BorderLayout();
     private JMenuItem projectRun_menuItem = new JMenuItem();
     private JMenuItem projectRunOther_menuItem = new JMenuItem();