Skip to content

Commit

Permalink
revereted XCOntentSource to master partially as per feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
vamuzumd committed Jan 27, 2021
1 parent c420a27 commit e32d7f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Objects;
Expand Down Expand Up @@ -91,7 +90,8 @@ public boolean isList() {
/**
* @return The source as a list
*/
public List<Object> getAsList() { return ((List<Object>) data());
public List<Object> getAsList() {
return (List<Object>) data();
}

/**
Expand Down

0 comments on commit e32d7f1

Please sign in to comment.