changeset 22037:494b5e7094d0

remove final on clearSourceSection
author Mick Jordan <mick.jordan@oracle.com>
date Mon, 27 Jul 2015 15:56:46 -0700
parents f26b6524e5e0
children 5cefc50e3379 52ba013fd495
files truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/Node.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/Node.java	Thu Jul 23 16:52:50 2015 -0700
+++ b/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/Node.java	Mon Jul 27 15:56:46 2015 -0700
@@ -113,7 +113,7 @@
     /**
      * Clears any previously assigned guest language source code from this node.
      */
-    public final void clearSourceSection() {
+    public void clearSourceSection() {
         this.sourceSection = null;
     }