diff options
author | Andy Clement <aclement@pivotal.io> | 2019-06-03 10:03:51 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-06-03 10:03:51 -0700 |
commit | 01f7d8ba8e3ff34ffacb95ae25787b0f0ce9f1d8 (patch) | |
tree | 66d8b8c86978297ddd3f56aa1f8fe7e4b9b885cd /org.aspectj.ajdt.core | |
parent | 7aa5fe4edc27b77b2d23d1dc72fe761cbef38313 (diff) | |
download | aspectj-01f7d8ba8e3ff34ffacb95ae25787b0f0ce9f1d8.tar.gz aspectj-01f7d8ba8e3ff34ffacb95ae25787b0f0ce9f1d8.zip |
Update to 1.9.5.BUILD-SNAPSHOT in poms
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r-- | org.aspectj.ajdt.core/pom.xml | 2 | ||||
-rw-r--r-- | org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/core/builder/EmacsStructureModelManager.java | 20 |
2 files changed, 11 insertions, 11 deletions
diff --git a/org.aspectj.ajdt.core/pom.xml b/org.aspectj.ajdt.core/pom.xml index 3183d1284..a7e078c4d 100644 --- a/org.aspectj.ajdt.core/pom.xml +++ b/org.aspectj.ajdt.core/pom.xml @@ -6,7 +6,7 @@ <parent> <groupId>org.aspectj</groupId> <artifactId>aspectj-parent</artifactId> - <version>1.9.4</version> + <version>1.9.5.BUILD-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/core/builder/EmacsStructureModelManager.java b/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/core/builder/EmacsStructureModelManager.java index 668ac2e8a..3322ac308 100644 --- a/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/core/builder/EmacsStructureModelManager.java +++ b/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/core/builder/EmacsStructureModelManager.java @@ -1,14 +1,14 @@ /* ******************************************************************* - * Copyright (c) 1999-2001 Xerox Corporation, + * Copyright (c) 1999-2001 Xerox Corporation, * 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 + * 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.ajdt.internal.core.builder; @@ -176,7 +176,7 @@ public class EmacsStructureModelManager { print("("); print(") "); print("("); - Iterator it3 = node.getChildren().iterator(); + Iterator<IProgramElement> it3 = node.getChildren().iterator(); if (it3.hasNext()) { while (it3.hasNext()) { // this ignores relations on the compile unit |