mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-12-26 05:32:16 +00:00
tidying
This commit is contained in:
parent
dda31851f5
commit
a2d4c4c05c
@ -39,6 +39,12 @@ abstract class Function implements Value
|
||||
|
||||
static Function getInstance (Sheet parent, String text)
|
||||
{
|
||||
if (text.charAt (0) != '@')
|
||||
{
|
||||
System.out.printf ("Unknown function: [%s]%n", text);
|
||||
return new Error (parent, "@ERROR");
|
||||
}
|
||||
|
||||
if (text.startsWith ("@LOOKUP("))
|
||||
return new Lookup (parent, text);
|
||||
|
||||
@ -85,9 +91,7 @@ abstract class Function implements Value
|
||||
return new Error (parent, text);
|
||||
|
||||
if (text.equals ("@NA"))
|
||||
{
|
||||
return new Na (parent, text);
|
||||
}
|
||||
|
||||
System.out.printf ("Unknown function: [%s]%n", text);
|
||||
return new Error (parent, "@ERROR");
|
||||
|
Loading…
Reference in New Issue
Block a user