You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kafka.apache.org by "Jay Kreps (JIRA)" <ji...@apache.org> on 2011/08/20 06:47:27 UTC

[jira] [Commented] (KAFKA-114) Replace tabs with spaces

    [ https://issues.apache.org/jira/browse/KAFKA-114?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13088128#comment-13088128 ] 

Jay Kreps commented on KAFKA-114:
---------------------------------

Patch was generated with the following script:

#!/bin/bash
files=`grep -lR '	' $1 | grep -v svn`
for file in $files;
do
  echo "Fixing $file";
  mv $file $file.bak;
  expand -t 2 $file.bak > $file;
  rm $file.bak
done

> Replace tabs with spaces
> ------------------------
>
>                 Key: KAFKA-114
>                 URL: https://issues.apache.org/jira/browse/KAFKA-114
>             Project: Kafka
>          Issue Type: Improvement
>            Reporter: Jay Kreps
>            Assignee: Jay Kreps
>            Priority: Trivial
>         Attachments: kafka-kill-tabs.patch
>
>
> Because I am obsessive compulsive.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira