Skip to content

Commit

Permalink
camelcase new APIs in XRay object
Browse files Browse the repository at this point in the history
  • Loading branch information
slogan621 committed Oct 22, 2020
1 parent 9d07ddc commit 931dd4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/org/thousandsmiles/tscharts_lib/XRay.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 931dd4e

Please sign in to comment.