From: aclement Date: Wed, 10 Dec 2008 21:37:27 +0000 (+0000) Subject: 258325: fix X-Git-Tag: V1_6_3rc1~22 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=33c1f32f5d8e2353a024c52cb17bd5aa30e70a30;p=aspectj.git 258325: fix --- diff --git a/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java b/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java index f1acd6d97..4fcd9d9aa 100644 --- a/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java +++ b/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java @@ -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) { + } + }