From 7834de49cd99479cdf7174d1fa3d5c6819d8ac16 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=85smund=20V=C3=A5ge=20Fannemel?=
<34712686+asmfstatoil@users.noreply.github.com>
Date: Fri, 25 Oct 2024 09:51:46 +0200
Subject: [PATCH] doc: fix warning
---
.../java/neqsim/physicalproperties/PhysicalPropertyType.java | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/main/java/neqsim/physicalproperties/PhysicalPropertyType.java b/src/main/java/neqsim/physicalproperties/PhysicalPropertyType.java
index 9116ad438..1a58a8aa1 100644
--- a/src/main/java/neqsim/physicalproperties/PhysicalPropertyType.java
+++ b/src/main/java/neqsim/physicalproperties/PhysicalPropertyType.java
@@ -10,9 +10,8 @@
public enum PhysicalPropertyType {
MASS_DENSITY, DYNAMIC_VISCOSITY, THERMAL_CONDUCTIVITY;
- // We know we'll never mutate this, so we can keep
- // a local copy for fast lookup in byName
- /** Constant copyOfValues
*/
+ // We know we'll never mutate this, so we can keep a local copy for fast lookup in byName
+ /** Constant copyOfValues
. */
private static final PhysicalPropertyType[] copyOfValues = values();
/**