aboutsummaryrefslogtreecommitdiff
path: root/test/jdk
diff options
context:
space:
mode:
authorlana <none@none>2013-12-26 12:04:16 -0800
committerlana <none@none>2013-12-26 12:04:16 -0800
commit72bb47a44f8cf9d02377e46e9dc692f18e21ff04 (patch)
tree7a1f9b6e6c721d4472b0e9bfae73c0ccdd3d1840 /test/jdk
parent0ad8d08ce9bd4f21bb741a383931c2802d7b21bd (diff)
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
Summary: updated files with 2011, 2012 and 2013 years according to the file's last updated date Reviewed-by: tbell, lancea, chegar
Diffstat (limited to 'test/jdk')
-rw-r--r--test/jdk/lambda/ArrayCtorRefTest.java2
-rw-r--r--test/jdk/lambda/FDTest.java2
-rw-r--r--test/jdk/lambda/LambdaTranslationCompoundSamTest.java2
-rw-r--r--test/jdk/lambda/LambdaTranslationInInterface.java2
-rw-r--r--test/jdk/lambda/LambdaTranslationTest1.java2
-rw-r--r--test/jdk/lambda/LambdaTranslationTest2.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestInnerDefault.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestInnerInstance.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestInnerVarArgsThis.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestInstance.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestInstanceMethod.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestKinds.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestNew.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestNewInner.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestSuper.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestSuperDefault.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestTypeConversion.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestVarArgs.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestVarArgsExt.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestVarArgsSuper.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestVarArgsSuperDefault.java2
-rw-r--r--test/jdk/lambda/MethodReferenceTestVarArgsThis.java2
-rw-r--r--test/jdk/lambda/TestInnerCtorRef.java2
-rw-r--r--test/jdk/lambda/TestPrivateCtorRef.java2
-rw-r--r--test/jdk/lambda/separate/AttributeInjector.java2
-rw-r--r--test/jdk/lambda/separate/ClassFile.java2
-rw-r--r--test/jdk/lambda/separate/ClassFilePreprocessor.java2
-rw-r--r--test/jdk/lambda/separate/ClassToInterfaceConverter.java2
-rw-r--r--test/jdk/lambda/separate/Compiler.java2
-rw-r--r--test/jdk/lambda/separate/DirectedClassLoader.java2
-rw-r--r--test/jdk/lambda/separate/SourceModel.java2
-rw-r--r--test/jdk/lambda/separate/TestHarness.java2
-rw-r--r--test/jdk/lambda/shapegen/ClassCase.java2
-rw-r--r--test/jdk/lambda/shapegen/Hierarchy.java2
-rw-r--r--test/jdk/lambda/shapegen/HierarchyGenerator.java2
-rw-r--r--test/jdk/lambda/shapegen/Rule.java2
-rw-r--r--test/jdk/lambda/shapegen/RuleGroup.java2
-rw-r--r--test/jdk/lambda/shapegen/TTNode.java2
-rw-r--r--test/jdk/lambda/shapegen/TTParser.java2
-rw-r--r--test/jdk/lambda/shapegen/TTShape.java2
-rw-r--r--test/jdk/lambda/vm/DefaultMethodRegressionTests.java2
-rw-r--r--test/jdk/lambda/vm/InterfaceAccessFlagsTest.java2
-rw-r--r--test/jdk/lambda/vm/StrictfpDefault.java2
43 files changed, 43 insertions, 43 deletions
diff --git a/test/jdk/lambda/ArrayCtorRefTest.java b/test/jdk/lambda/ArrayCtorRefTest.java
index 7189fc41b..c0eedfdf2 100644
--- a/test/jdk/lambda/ArrayCtorRefTest.java
+++ b/test/jdk/lambda/ArrayCtorRefTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/FDTest.java b/test/jdk/lambda/FDTest.java
index adda12a56..c207a61c9 100644
--- a/test/jdk/lambda/FDTest.java
+++ b/test/jdk/lambda/FDTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/LambdaTranslationCompoundSamTest.java b/test/jdk/lambda/LambdaTranslationCompoundSamTest.java
index a8006b468..a89ea9482 100644
--- a/test/jdk/lambda/LambdaTranslationCompoundSamTest.java
+++ b/test/jdk/lambda/LambdaTranslationCompoundSamTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/LambdaTranslationInInterface.java b/test/jdk/lambda/LambdaTranslationInInterface.java
index 20505a42f..65d3f07e6 100644
--- a/test/jdk/lambda/LambdaTranslationInInterface.java
+++ b/test/jdk/lambda/LambdaTranslationInInterface.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/LambdaTranslationTest1.java b/test/jdk/lambda/LambdaTranslationTest1.java
index acfc904cd..28ad3b6e2 100644
--- a/test/jdk/lambda/LambdaTranslationTest1.java
+++ b/test/jdk/lambda/LambdaTranslationTest1.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/LambdaTranslationTest2.java b/test/jdk/lambda/LambdaTranslationTest2.java
index 59263e5b9..4b1c8a1f5 100644
--- a/test/jdk/lambda/LambdaTranslationTest2.java
+++ b/test/jdk/lambda/LambdaTranslationTest2.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestInnerDefault.java b/test/jdk/lambda/MethodReferenceTestInnerDefault.java
index ea9a76d4c..1074bdb90 100644
--- a/test/jdk/lambda/MethodReferenceTestInnerDefault.java
+++ b/test/jdk/lambda/MethodReferenceTestInnerDefault.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestInnerInstance.java b/test/jdk/lambda/MethodReferenceTestInnerInstance.java
index 2aa1526bc..0f1a13841 100644
--- a/test/jdk/lambda/MethodReferenceTestInnerInstance.java
+++ b/test/jdk/lambda/MethodReferenceTestInnerInstance.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestInnerVarArgsThis.java b/test/jdk/lambda/MethodReferenceTestInnerVarArgsThis.java
index 06c58dc8e..beac6f5b8 100644
--- a/test/jdk/lambda/MethodReferenceTestInnerVarArgsThis.java
+++ b/test/jdk/lambda/MethodReferenceTestInnerVarArgsThis.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestInstance.java b/test/jdk/lambda/MethodReferenceTestInstance.java
index 2e0634786..f8bb04892 100644
--- a/test/jdk/lambda/MethodReferenceTestInstance.java
+++ b/test/jdk/lambda/MethodReferenceTestInstance.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestInstanceMethod.java b/test/jdk/lambda/MethodReferenceTestInstanceMethod.java
index 12faf3900..bb6ace242 100644
--- a/test/jdk/lambda/MethodReferenceTestInstanceMethod.java
+++ b/test/jdk/lambda/MethodReferenceTestInstanceMethod.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestKinds.java b/test/jdk/lambda/MethodReferenceTestKinds.java
index 8f11bc28f..dc457353e 100644
--- a/test/jdk/lambda/MethodReferenceTestKinds.java
+++ b/test/jdk/lambda/MethodReferenceTestKinds.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestNew.java b/test/jdk/lambda/MethodReferenceTestNew.java
index b556296a5..baec244e7 100644
--- a/test/jdk/lambda/MethodReferenceTestNew.java
+++ b/test/jdk/lambda/MethodReferenceTestNew.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestNewInner.java b/test/jdk/lambda/MethodReferenceTestNewInner.java
index 084eec335..a4f17d0f6 100644
--- a/test/jdk/lambda/MethodReferenceTestNewInner.java
+++ b/test/jdk/lambda/MethodReferenceTestNewInner.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestSuper.java b/test/jdk/lambda/MethodReferenceTestSuper.java
index 1fee7e167..211afb153 100644
--- a/test/jdk/lambda/MethodReferenceTestSuper.java
+++ b/test/jdk/lambda/MethodReferenceTestSuper.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestSuperDefault.java b/test/jdk/lambda/MethodReferenceTestSuperDefault.java
index 103961e73..f2e2c183c 100644
--- a/test/jdk/lambda/MethodReferenceTestSuperDefault.java
+++ b/test/jdk/lambda/MethodReferenceTestSuperDefault.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestTypeConversion.java b/test/jdk/lambda/MethodReferenceTestTypeConversion.java
index e690a9fc3..e36b724b3 100644
--- a/test/jdk/lambda/MethodReferenceTestTypeConversion.java
+++ b/test/jdk/lambda/MethodReferenceTestTypeConversion.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestVarArgs.java b/test/jdk/lambda/MethodReferenceTestVarArgs.java
index 0e58edb58..d2926f00c 100644
--- a/test/jdk/lambda/MethodReferenceTestVarArgs.java
+++ b/test/jdk/lambda/MethodReferenceTestVarArgs.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestVarArgsExt.java b/test/jdk/lambda/MethodReferenceTestVarArgsExt.java
index 810172276..a3a967ce3 100644
--- a/test/jdk/lambda/MethodReferenceTestVarArgsExt.java
+++ b/test/jdk/lambda/MethodReferenceTestVarArgsExt.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestVarArgsSuper.java b/test/jdk/lambda/MethodReferenceTestVarArgsSuper.java
index 2c37099be..82e417cf3 100644
--- a/test/jdk/lambda/MethodReferenceTestVarArgsSuper.java
+++ b/test/jdk/lambda/MethodReferenceTestVarArgsSuper.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestVarArgsSuperDefault.java b/test/jdk/lambda/MethodReferenceTestVarArgsSuperDefault.java
index 8f3bd87ad..8388b60ec 100644
--- a/test/jdk/lambda/MethodReferenceTestVarArgsSuperDefault.java
+++ b/test/jdk/lambda/MethodReferenceTestVarArgsSuperDefault.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/MethodReferenceTestVarArgsThis.java b/test/jdk/lambda/MethodReferenceTestVarArgsThis.java
index eb5dfca7b..2681a22e1 100644
--- a/test/jdk/lambda/MethodReferenceTestVarArgsThis.java
+++ b/test/jdk/lambda/MethodReferenceTestVarArgsThis.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/TestInnerCtorRef.java b/test/jdk/lambda/TestInnerCtorRef.java
index 7b9ac1d75..900fe8873 100644
--- a/test/jdk/lambda/TestInnerCtorRef.java
+++ b/test/jdk/lambda/TestInnerCtorRef.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/TestPrivateCtorRef.java b/test/jdk/lambda/TestPrivateCtorRef.java
index a358a04f0..3ee52aaa6 100644
--- a/test/jdk/lambda/TestPrivateCtorRef.java
+++ b/test/jdk/lambda/TestPrivateCtorRef.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/AttributeInjector.java b/test/jdk/lambda/separate/AttributeInjector.java
index 52e3f76e3..526895211 100644
--- a/test/jdk/lambda/separate/AttributeInjector.java
+++ b/test/jdk/lambda/separate/AttributeInjector.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/ClassFile.java b/test/jdk/lambda/separate/ClassFile.java
index 919df1a1a..d49e478fa 100644
--- a/test/jdk/lambda/separate/ClassFile.java
+++ b/test/jdk/lambda/separate/ClassFile.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/ClassFilePreprocessor.java b/test/jdk/lambda/separate/ClassFilePreprocessor.java
index bb91746d5..6314bf34e 100644
--- a/test/jdk/lambda/separate/ClassFilePreprocessor.java
+++ b/test/jdk/lambda/separate/ClassFilePreprocessor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/ClassToInterfaceConverter.java b/test/jdk/lambda/separate/ClassToInterfaceConverter.java
index 8da05ac4e..7efedc9aa 100644
--- a/test/jdk/lambda/separate/ClassToInterfaceConverter.java
+++ b/test/jdk/lambda/separate/ClassToInterfaceConverter.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/Compiler.java b/test/jdk/lambda/separate/Compiler.java
index cbee5764b..48e25d4e0 100644
--- a/test/jdk/lambda/separate/Compiler.java
+++ b/test/jdk/lambda/separate/Compiler.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/DirectedClassLoader.java b/test/jdk/lambda/separate/DirectedClassLoader.java
index 726edabf3..9e250a665 100644
--- a/test/jdk/lambda/separate/DirectedClassLoader.java
+++ b/test/jdk/lambda/separate/DirectedClassLoader.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/SourceModel.java b/test/jdk/lambda/separate/SourceModel.java
index 1fe3e9edb..faf32167c 100644
--- a/test/jdk/lambda/separate/SourceModel.java
+++ b/test/jdk/lambda/separate/SourceModel.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/separate/TestHarness.java b/test/jdk/lambda/separate/TestHarness.java
index 9a4d06767..e93f00373 100644
--- a/test/jdk/lambda/separate/TestHarness.java
+++ b/test/jdk/lambda/separate/TestHarness.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/ClassCase.java b/test/jdk/lambda/shapegen/ClassCase.java
index 7ad096abc..85e942dff 100644
--- a/test/jdk/lambda/shapegen/ClassCase.java
+++ b/test/jdk/lambda/shapegen/ClassCase.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/Hierarchy.java b/test/jdk/lambda/shapegen/Hierarchy.java
index 2315a9ea2..64443d644 100644
--- a/test/jdk/lambda/shapegen/Hierarchy.java
+++ b/test/jdk/lambda/shapegen/Hierarchy.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/HierarchyGenerator.java b/test/jdk/lambda/shapegen/HierarchyGenerator.java
index 4bf5af9b8..9511c41c4 100644
--- a/test/jdk/lambda/shapegen/HierarchyGenerator.java
+++ b/test/jdk/lambda/shapegen/HierarchyGenerator.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/Rule.java b/test/jdk/lambda/shapegen/Rule.java
index 5995ecd71..7ff02e050 100644
--- a/test/jdk/lambda/shapegen/Rule.java
+++ b/test/jdk/lambda/shapegen/Rule.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/RuleGroup.java b/test/jdk/lambda/shapegen/RuleGroup.java
index b67ffcd86..ef194abf4 100644
--- a/test/jdk/lambda/shapegen/RuleGroup.java
+++ b/test/jdk/lambda/shapegen/RuleGroup.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/TTNode.java b/test/jdk/lambda/shapegen/TTNode.java
index 141b052ac..48310dfd6 100644
--- a/test/jdk/lambda/shapegen/TTNode.java
+++ b/test/jdk/lambda/shapegen/TTNode.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/TTParser.java b/test/jdk/lambda/shapegen/TTParser.java
index 6f56ac7cd..ffabee54f 100644
--- a/test/jdk/lambda/shapegen/TTParser.java
+++ b/test/jdk/lambda/shapegen/TTParser.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/shapegen/TTShape.java b/test/jdk/lambda/shapegen/TTShape.java
index 806438787..07b84e214 100644
--- a/test/jdk/lambda/shapegen/TTShape.java
+++ b/test/jdk/lambda/shapegen/TTShape.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/vm/DefaultMethodRegressionTests.java b/test/jdk/lambda/vm/DefaultMethodRegressionTests.java
index fc206d261..b8ad7c713 100644
--- a/test/jdk/lambda/vm/DefaultMethodRegressionTests.java
+++ b/test/jdk/lambda/vm/DefaultMethodRegressionTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/vm/InterfaceAccessFlagsTest.java b/test/jdk/lambda/vm/InterfaceAccessFlagsTest.java
index b33ea3e65..ea2fd1f7f 100644
--- a/test/jdk/lambda/vm/InterfaceAccessFlagsTest.java
+++ b/test/jdk/lambda/vm/InterfaceAccessFlagsTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff --git a/test/jdk/lambda/vm/StrictfpDefault.java b/test/jdk/lambda/vm/StrictfpDefault.java
index 9b7e1680e..f92201230 100644
--- a/test/jdk/lambda/vm/StrictfpDefault.java
+++ b/test/jdk/lambda/vm/StrictfpDefault.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it