Skip to content

Commit

Permalink
guino slider fix
Browse files Browse the repository at this point in the history
no need variable
  • Loading branch information
karlTH committed Nov 24, 2014
1 parent 6932e22 commit eae53da
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -17,16 +17,13 @@ public String toCode() throws SocketNullException, SubroutineNotDeclaredExceptio
{

String Title;
String Variable;
String Min;
String Max;
TranslatorBlock translatorBlock = this.getRequiredTranslatorBlockAtSocket(0);
Title = translatorBlock.toCode();
translatorBlock = this.getRequiredTranslatorBlockAtSocket(1);
Variable = translatorBlock.toCode();
translatorBlock = this.getRequiredTranslatorBlockAtSocket(2);
Min = translatorBlock.toCode();
translatorBlock = this.getRequiredTranslatorBlockAtSocket(3);
translatorBlock = this.getRequiredTranslatorBlockAtSocket(2);
Max = translatorBlock.toCode();

String internalVariableName = translator.getNumberVariable(label);
Expand Down

0 comments on commit eae53da

Please sign in to comment.