ch-commons-util/src/main/java/com/cloudhopper/commons/util/codec/URLDecoder.java [108:123]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
				flush(false);
			}
		}
		return this;
	}
	
	public Appendable append(char c) throws IOException{
		singleCharBuffer.put(0, c);
		return append(singleCharBuffer);
	}
	
	public Appendable append(CharSequence csq, int start, int end) throws IOException{
		return append(csq.subSequence(start, end));
	}
	
	protected void flush(boolean endOfInput) throws IOException{
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ch-commons-util/src/main/java/com/cloudhopper/commons/util/codec/URLEncoder.java [92:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
				flush(false);
			}
		}
		return this;
	}
	
	public Appendable append(char c) throws IOException{
		singleCharBuffer.put(0, c);
		return append(singleCharBuffer);
	}
	
	public Appendable append(CharSequence csq, int start, int end) throws IOException{
		return append(csq.subSequence(start, end));
	}
	
	protected void flush(boolean endOfInput) throws IOException{
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



