Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libjregex-java
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Java Maintainers
libjregex-java
Commits
75295bea
Commit
75295bea
authored
4 years ago
by
Andrius Merkys
Browse files
Options
Downloads
Patches
Plain Diff
Adding a patch to remove strange symbols.
parent
2cd5429a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/patches/remove-strange-symbols.patch
+52
-0
52 additions, 0 deletions
debian/patches/remove-strange-symbols.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
53 additions
and
0 deletions
debian/patches/remove-strange-symbols.patch
0 → 100644
+
52
−
0
View file @
75295bea
--- a/jregex/Bitset.java
+++ b/jregex/Bitset.java
@@ -297,42 +297,6 @@
return sb.toString();
}
- /*
- public static void main(String[] args){
- //System.out.print("blocks(Lu)=");
- //System.out.println(CharacterClass.stringValue2(Block.toBitset2(categoryBits[Lu])));
- //System.out.println("[1][0].get('a')="+categoryBits[1][0].get('a'));
- //System.out.println("[1][0].get('A')="+categoryBits[1][0].get('A'));
- //System.out.println("[1][0].get(65)="+categoryBits[1][0].get(65));
- //System.out.println(""+categoryBits[1][0].get('A'));
- Bitset b1=new Bitset();
- //b1.setCategory(Lu);
- //b1.enableLargeMode();
- b1.setRange('a','z');
- b1.setRange('','');
-
- Bitset b2=new Bitset();
- //b2.setCategory(Ll);
- //b2.enableLargeMode();
- b2.setRange('A','Z');
- b2.setRange('','');
-
- Bitset b=new Bitset();
- //bs.setRange('a','z');
- //bs.setRange('A','Z');
- b.add(b1);
- b.add(b2,true);
-
- System.out.println("b1="+b1);
- System.out.println("b2="+b2);
- System.out.println("b=b1+^b2="+b);
-
- b.subtract(b1,true);
-
- System.out.println("(b1+^b2)-^b1="+b);
-
- }
- */
}
class Block implements UnicodeConstants{
@@ -592,4 +556,4 @@
static{
for(int i=0;i<BLOCK_SIZE;i++) FULL_BITS[i]=true;
}
-}
\ No newline at end of file
+}
This diff is collapsed.
Click to expand it.
debian/patches/series
0 → 100644
+
1
−
0
View file @
75295bea
remove-strange-symbols.patch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment