From 931dd4eee4afbba92454ad864a1828f1f3dd5412 Mon Sep 17 00:00:00 2001 From: Syd Logan Date: Wed, 21 Oct 2020 21:36:02 -0700 Subject: [PATCH] camelcase new APIs in XRay object --- app/src/main/java/org/thousandsmiles/tscharts_lib/XRay.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/org/thousandsmiles/tscharts_lib/XRay.java b/app/src/main/java/org/thousandsmiles/tscharts_lib/XRay.java index 4199514..43544d8 100755 --- a/app/src/main/java/org/thousandsmiles/tscharts_lib/XRay.java +++ b/app/src/main/java/org/thousandsmiles/tscharts_lib/XRay.java @@ -203,13 +203,13 @@ private boolean validateType(String type) { type.equals(XRAY_TYPE_CEPHATOMETRIC); } - public void ClearType() { + public void clearType() { this.m_type = XRAY_TYPE_NONE; } // if m_type is "fb" and this function is called with "p", m_type will become "fbp" - public boolean AddType(String type) { + public boolean addType(String type) { boolean ret = true; if (validateType(type) == false) { ret = false; @@ -221,7 +221,7 @@ public boolean AddType(String type) { // if m_type is "fbp" and this function is called with "p", m_type will become "fb" - public boolean RemoveType(String type) { + public boolean removeType(String type) { boolean ret = true; if (validateType(type) == false) { ret = false;