]> source.dussan.org Git - aspectj.git/commitdiff
258325: fix
authoraclement <aclement>
Wed, 10 Dec 2008 21:37:27 +0000 (21:37 +0000)
committeraclement <aclement>
Wed, 10 Dec 2008 21:37:27 +0000 (21:37 +0000)
ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java

index f1acd6d9725d889af48dfddfc1cedfe178abb2e2..4fcd9d9aae086a571063ae74ebe824e194683963 100644 (file)
@@ -18,15 +18,13 @@ import org.aspectj.ajde.core.IOutputLocationManager;
 import org.aspectj.ajde.ui.UserPreferencesAdapter;
 
 /**
- * IOutputLocationManager which returns the same output location for
- * all files and resources.
+ * IOutputLocationManager which returns the same output location for all files and resources.
  */
 public class BrowserOutputLocationManager implements IOutputLocationManager {
 
        private UserPreferencesAdapter preferencesAdapter;
 
-       public BrowserOutputLocationManager(
-                       UserPreferencesAdapter preferencesAdapter) {
+       public BrowserOutputLocationManager(UserPreferencesAdapter preferencesAdapter) {
                this.preferencesAdapter = preferencesAdapter;
        }
 
@@ -39,8 +37,7 @@ public class BrowserOutputLocationManager implements IOutputLocationManager {
        }
 
        private String getCommonOutputDir() {
-               String outputPath = preferencesAdapter.getProjectPreference(
-                               PreferenceStoreConstants.BUILD_OUTPUTPATH);
+               String outputPath = preferencesAdapter.getProjectPreference(PreferenceStoreConstants.BUILD_OUTPUTPATH);
                if (outputPath == null) {
                        return ".";
                }
@@ -61,4 +58,7 @@ public class BrowserOutputLocationManager implements IOutputLocationManager {
                return null;
        }
 
+       public void reportClassFileWrite(String outputfile) {
+       }
+
 }