aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraclement <aclement>2008-06-04 21:21:32 +0000
committeraclement <aclement>2008-06-04 21:21:32 +0000
commit439ec9537a7b24361f7ba9a1da4f6c860dc69eba (patch)
tree22643e3b6828692dc3a1b8624134cfb703f95fe7
parentc844a904e066025b93288609dcc7f3dd7ecf16ee (diff)
downloadaspectj-439ec9537a7b24361f7ba9a1da4f6c860dc69eba.tar.gz
aspectj-439ec9537a7b24361f7ba9a1da4f6c860dc69eba.zip
231396: refactoring AspectJ: unused
-rw-r--r--weaver/src/org/aspectj/weaver/IWeaver.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/weaver/src/org/aspectj/weaver/IWeaver.java b/weaver/src/org/aspectj/weaver/IWeaver.java
deleted file mode 100644
index 4078d07a8..000000000
--- a/weaver/src/org/aspectj/weaver/IWeaver.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/* *******************************************************************
- * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved.
- * This program and the accompanying materials are made available
- * under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * PARC initial implementation
- * ******************************************************************/
-
-
-package org.aspectj.weaver;
-
-/**
- * A weaver is given all the aspects it will weave. It should create an appropriate kind of
- * IWorld. It then should be given a bunch of classes (types with implementation), creates an
- * appropriate IClassWeaver for each such class, and weaves. The IWeaver is responsible for
- * IO.
- */
-public interface IWeaver {
-
- public static final String CLOSURE_CLASS_PREFIX = "$Ajc";
-
- public static final String SYNTHETIC_CLASS_POSTFIX = "$ajc";
-
-}