@@ -62,7 +62,7 @@ private void customizeComponents() {
6262 this .addTab ("JSearch" , this .tabJSearch );
6363 this .addTab ("JTransCoder" , this .tabJTransCoder );
6464 this .addTab ("Version" , this .tabVersion );
65-
65+
6666 this .tabEncoding .addPropertyChangeListener (ENCODING_PROPERTY , this );
6767 this .tabMatchReplace .addPropertyChangeListener (MATCHREPLACE_PROPERTY , this );
6868 this .tabMatchAlert .addPropertyChangeListener (MATCHALERT_PROPERTY , this );
@@ -137,7 +137,7 @@ public void setMatchReplaceProperty(MatchReplaceProperty matchReplaceProperty) {
137137 public MatchReplaceProperty getMatchReplaceProperty () {
138138 return this .tabMatchReplace .getMatchReplaceProperty ();
139139 }
140-
140+
141141 @ Override
142142 public void setSendToProperty (SendToProperty sendToProperty ) {
143143 this .tabSendTo .setSendToProperty (sendToProperty );
@@ -147,7 +147,7 @@ public void setSendToProperty(SendToProperty sendToProperty) {
147147 public SendToProperty getSendToProperty () {
148148 return this .tabSendTo .getSendToProperty ();
149149 }
150-
150+
151151 @ Override
152152 public void setLoggingProperty (LoggingProperty loggingProperty ) {
153153 this .tabLogging .setLoggingProperty (loggingProperty );
@@ -185,7 +185,7 @@ public void setAutoResponderProperty(AutoResponderProperty autoResponderProperty
185185 public AutoResponderProperty getAutoResponderProperty () {
186186 return this .tabAutoResponder .getAutoResponderProperty ();
187187 }
188-
188+
189189 @ Override
190190 public JSearchProperty getJSearchProperty () {
191191 return this .tabJSearch .getProperty ();
@@ -195,8 +195,8 @@ public JSearchProperty getJSearchProperty() {
195195 public void setJSearchProperty (JSearchProperty jsearch ) {
196196 this .tabJSearch .setProperty (jsearch );
197197 }
198-
199- public void setJTransCoderProperty (EncodingProperty encodingProperty ) {
198+
199+ public void setJTransCoderProperty (EncodingProperty encodingProperty ) {
200200 this .tabJTransCoder .setEncodingList (encodingProperty .getEncodingList (), "" );
201201 }
202202
@@ -209,7 +209,7 @@ public JTransCoderProperty getJTransCoderProperty() {
209209 public void setJTransCoderProperty (JTransCoderProperty transcoder ) {
210210 this .tabJTransCoder .setProperty (transcoder );
211211 }
212-
212+
213213 @ Override
214214 public boolean getDebugMode () {
215215 return this .tabVersion .getDebugMode ();
@@ -219,7 +219,7 @@ public boolean getDebugMode() {
219219 public void setDebugMode (boolean debugMode ) {
220220 this .tabVersion .setDebugMode (debugMode );
221221 }
222-
222+
223223 @ Override
224224 public void propertyChange (PropertyChangeEvent evt ) {
225225 this .firePropertyChange (evt .getPropertyName (), evt .getOldValue (), evt .getNewValue ());
@@ -228,7 +228,7 @@ public void propertyChange(PropertyChangeEvent evt) {
228228 public void sendToJTransCoder (String text ) {
229229 Container container = this .getParent ();
230230 if (container instanceof JTabbedPane ) {
231- JTabbedPane tabbet = (JTabbedPane )container ;
231+ JTabbedPane tabbet = (JTabbedPane ) container ;
232232 int index = tabbet .indexOfTab (this .getTabCaption ());
233233 //BurpExtender.errPrintln("\tname u r:" + index);
234234 if (index > -1 ) {
@@ -238,20 +238,15 @@ public void sendToJTransCoder(String text) {
238238 tabbet .updateUI ();
239239 }
240240 this .tabJTransCoder .sendToJTransCoder (text );
241- // Class cls = this.getParent().getClass();
242- // BurpExtender.errPrintln("name:" + cls.getName());
243- // while ((cls = cls.getSuperclass()) != null) {
244- // BurpExtender.errPrintln("\tname:" + cls.getName());
245- // }
246241 }
247242
248- public byte [] receiveFromJTransCoder () {
249- return this .tabJTransCoder .receiveFromJTransCoder ();
243+ public byte [] receiveFromJTransCoder () {
244+ return this .tabJTransCoder .receiveFromJTransCoder ();
250245 }
251246
252247 @ Override
253248 public void extensionUnloaded () {
254249 this .tabAutoResponder .extensionUnloaded ();
255250 }
256-
251+
257252}
0 commit comments