mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-09 22:51:22 +00:00
Fix style issues.
This commit is contained in:
@@ -39,6 +39,7 @@ package net.sourceforge.guacamole.io;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.Reader;
|
||||
import java.util.Deque;
|
||||
import java.util.LinkedList;
|
||||
import net.sourceforge.guacamole.GuacamoleException;
|
||||
import net.sourceforge.guacamole.GuacamoleServerException;
|
||||
@@ -210,7 +211,7 @@ public class ReaderGuacamoleReader implements GuacamoleReader {
|
||||
int elementStart = 0;
|
||||
|
||||
// Build list of elements
|
||||
LinkedList<String> elements = new LinkedList<String>();
|
||||
Deque<String> elements = new LinkedList<String>();
|
||||
while (elementStart < instructionBuffer.length) {
|
||||
|
||||
// Find end of length
|
||||
|
Reference in New Issue
Block a user