This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.commons.compiler-2.0.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-compiler.git
commit b50cd86fb7957cdf5122991208ea77fb8c290f85 Author: Carsten Ziegeler <[email protected]> AuthorDate: Fri Mar 19 15:58:57 2010 +0000 SLING-1451 : Clean up compiler API and use classloading infrastructure git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/commons/compiler@925291 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/sling/commons/compiler/Options.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/org/apache/sling/commons/compiler/Options.java b/src/main/java/org/apache/sling/commons/compiler/Options.java index 366f6f0..4085e04 100644 --- a/src/main/java/org/apache/sling/commons/compiler/Options.java +++ b/src/main/java/org/apache/sling/commons/compiler/Options.java @@ -71,6 +71,13 @@ public class Options extends HashMap<String, Object> { this.put(KEY_GENERATE_DEBUG_INFO, true); } + /** + * Create a new options object based on an existing one. + */ + public Options(final Options options) { + super(options); + } + public String getSourceVersion() { return (String) this.get(KEY_SOURCE_VERSION); } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
