summaryrefslogtreecommitdiffstats
path: root/ajbrowser/src/org/aspectj/tools
diff options
context:
space:
mode:
authoraclement <aclement>2008-12-10 21:37:27 +0000
committeraclement <aclement>2008-12-10 21:37:27 +0000
commit33c1f32f5d8e2353a024c52cb17bd5aa30e70a30 (patch)
tree6f55f407f775d22abc96128c8638b123477de503 /ajbrowser/src/org/aspectj/tools
parent21f257f764afb74bdf2a1113b082a589c30e5ec9 (diff)
downloadaspectj-33c1f32f5d8e2353a024c52cb17bd5aa30e70a30.tar.gz
aspectj-33c1f32f5d8e2353a024c52cb17bd5aa30e70a30.zip
258325: fix
Diffstat (limited to 'ajbrowser/src/org/aspectj/tools')
-rw-r--r--ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java12
1 files changed, 6 insertions, 6 deletions
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) {
+ }
+
}