From 33a836316190797e3213677f4a67464e5fa63bfa Mon Sep 17 00:00:00 2001 From: mdb Date: Wed, 15 Jan 2003 01:41:25 +0000 Subject: [PATCH] Make the getValue() methods final so that they may be optimized. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1020 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/util/RuntimeAdjust.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/util/RuntimeAdjust.java b/projects/samskivert/src/java/com/samskivert/util/RuntimeAdjust.java index f6f744aa..24b20a26 100644 --- a/projects/samskivert/src/java/com/samskivert/util/RuntimeAdjust.java +++ b/projects/samskivert/src/java/com/samskivert/util/RuntimeAdjust.java @@ -1,5 +1,5 @@ // -// $Id: RuntimeAdjust.java,v 1.2 2003/01/15 01:25:55 mdb Exp $ +// $Id: RuntimeAdjust.java,v 1.3 2003/01/15 01:41:25 mdb Exp $ package com.samskivert.util; @@ -117,7 +117,7 @@ public class RuntimeAdjust _value = _config.getValue(_name, defval); } - public boolean getValue () + public final boolean getValue () { return _value; } @@ -168,7 +168,7 @@ public class RuntimeAdjust _value = _config.getValue(_name, defval); } - public int getValue () + public final int getValue () { return _value; } @@ -224,7 +224,7 @@ public class RuntimeAdjust _value = _config.getValue(_name, defval); } - public String getValue () + public final String getValue () { return _value; }