Skip to content
Snippets Groups Projects
Commit 58498a0f authored by Lukas Stadler's avatar Lukas Stadler
Browse files

Merge pull request #617 in G/fastr from...

Merge pull request #617 in G/fastr from ~LUKAS.STADLER_ORACLE.COM/fastr:bugfix/remove_arg_comments to master

* commit 'c92b30a2':
  remove unnecesarry end-of-line comments, remove unnecessary newlines
parents b49f6519 c92b30a2
No related branches found
No related tags found
No related merge requests found
Showing
with 18 additions and 39 deletions
......@@ -633,7 +633,6 @@ class RRuntimeASTAccessImpl implements RRuntimeASTAccess {
} else {
return result;
}
}
@TruffleBoundary
......
/*
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015, 2017, 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
......@@ -87,7 +87,6 @@ public final class TruffleRLanguage extends TruffleLanguage<RContext> {
} catch (ExitException ex) {
System.exit(ex.getStatus());
}
}
}
......
/*
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2017, 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
......@@ -38,5 +38,4 @@ public class DLLDotSymbolMR {
return receiver instanceof DLL.DotSymbol;
}
}
}
/*
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2017, 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
......@@ -38,5 +38,4 @@ public class DLLInfoMR {
return receiver instanceof DLL.DLLInfo;
}
}
}
/*
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2017, 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
......@@ -33,5 +33,4 @@ public class NativeCharArray extends NativeUInt8Array {
public NativeCharArray(byte[] bytes) {
super(bytes, true);
}
}
/*
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2017, 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
......@@ -74,5 +74,4 @@ public class NativeCharArrayMR {
return receiver instanceof NativeCharArray;
}
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -35,5 +35,4 @@ public class NativeDoubleArray extends NativeNACheck implements RTruffleObject {
public NativeDoubleArray(double[] value) {
this(null, value);
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -35,5 +35,4 @@ public class NativeIntegerArray extends NativeNACheck implements RTruffleObject
public NativeIntegerArray(int[] value) {
this(null, value);
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -58,5 +58,4 @@ public class NativeIntegerArrayMR {
return receiver instanceof NativeIntegerArray;
}
}
}
/*
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2017, 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
......@@ -52,5 +52,4 @@ public class NativeLogicalArray extends NativeNACheck implements RTruffleObject
}
data[index] = newVal;
}
}
/*
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2017, 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
......@@ -60,5 +60,4 @@ public class NativeLogicalArrayMR {
return receiver instanceof NativeLogicalArray;
}
}
}
/*
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2017, 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
......@@ -46,5 +46,4 @@ public class NativeNACheck {
vec.setComplete(false);
}
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -27,5 +27,4 @@ public class NativeRawArray extends NativeUInt8Array {
public NativeRawArray(byte[] bytes) {
super(bytes, false);
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -67,5 +67,4 @@ public class NativeRawArrayMR {
return receiver instanceof NativeRawArray;
}
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -114,5 +114,4 @@ public abstract class NativeUInt8Array implements RTruffleObject {
}
return bytes;
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -67,5 +67,4 @@ public class RDoubleMR {
return receiver instanceof RDouble;
}
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -109,5 +109,4 @@ public class REnvironmentMR {
return receiver instanceof REnvironment;
}
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -38,5 +38,4 @@ public class RExternalPtrMR {
return receiver instanceof RExternalPtr;
}
}
}
......@@ -239,7 +239,6 @@ public final class RForeignAccessFactoryImpl implements RForeignAccessFactory {
}
return foreignAccess;
}
}
/**
......@@ -286,5 +285,4 @@ public final class RForeignAccessFactoryImpl implements RForeignAccessFactory {
public Class<? extends TruffleLanguage<RContext>> getTruffleLanguage() {
return TruffleRLanguage.class;
}
}
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -84,5 +84,4 @@ public class RFunctionMR {
return receiver instanceof RFunction;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment