From 72e15fff718d88d0b58a1c3b15a37faa1b4f9379 Mon Sep 17 00:00:00 2001
From: Guylaine Prat <guylaine.prat@c-s.fr>
Date: Mon, 28 Jan 2019 14:13:31 +0100
Subject: [PATCH] Remove useless configuration flag.

---
 .../rugged/refraction/AtmosphericRefraction.java   | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/src/main/java/org/orekit/rugged/refraction/AtmosphericRefraction.java b/src/main/java/org/orekit/rugged/refraction/AtmosphericRefraction.java
index 0baa04d1..b2bf1bc9 100644
--- a/src/main/java/org/orekit/rugged/refraction/AtmosphericRefraction.java
+++ b/src/main/java/org/orekit/rugged/refraction/AtmosphericRefraction.java
@@ -39,12 +39,6 @@ public abstract class AtmosphericRefraction {
      */
     private boolean mustBeComputed = true;
 
-    /** Flag to tell if we must compute the correction (for direct location) with an optimization grid.
-     * By default: optimization is not set up.
-     * @since 2.1
-     */
-    private boolean isOptimized = false;
-
     /** The current atmospheric parameters.
      * @since 2.1
      */
@@ -119,14 +113,6 @@ public abstract class AtmosphericRefraction {
         return mustBeComputed;
     }
 
-    /** Tell if the computation (for direct location) must be optimized.
-     * @return true if computation must be optimized; false otherwise
-     * @since 2.1
-     */
-    public boolean isOptimized() {
-        return isOptimized;
-    }
-
     /** Configuration of the interpolation grid. This grid is associated to the given sensor,
      * with the given min and max lines.
      * @param sensor line sensor
-- 
GitLab